GET api2/prices/{id}.json

Get prices by id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

id or product_id

string

Required

Body Parameters

None.

Response Information

Resource Description

prices

api_root
NameDescriptionTypeAdditional information
entry

PriceModels

None.

Response Format

{
  "entry": {
    "id": 1,
    "title": "sample string 2",
    "created_at": "2024-10-02T14:09:08.7358799+02:00",
    "valid": 1,
    "assignment": 1,
    "modified_at": "2024-10-02T14:09:08.7358799+02:00",
    "currencies": [
      {
        "currency": "usd",
        "price": 2
      },
      {
        "currency": "usd",
        "price": 2
      }
    ],
    "countries": [
      {
        "country": null,
        "country_name": null,
        "country_code": null,
        "price": 4
      },
      {
        "country": null,
        "country_name": null,
        "country_code": null,
        "price": 4
      }
    ]
  }
}