OrderLineItem
A single line of an order: the product sold, its condition or grade, quantity, and price.
- conditionType: string · CardConditionenumnullablerequired
The card's condition:
NM,LP,MP,HP, orDMG.nullwhen the item is graded or sealed.Card condition: NM (Near Mint), LP (Lightly Played), MP (Moderately Played), HP (Heavily Played), DMG (Damaged).
values- N
M Near Mint.
- L
P Lightly Played.
- M
P Moderately Played.
- H
P Heavily Played.
- D
M G Damaged.
- finishType: stringrequired
The card's finish, e.g.
Standard,Foil,Reverse Holo. - gradedType: object · Gradednullablerequired
Grading details when the item is graded.
nullfor raw cards and sealed products.Grading details for a slabbed card.
- certificationType: string nullablerequired
The certification number printed on the slab.
nullwhen the card does not carry one. - gradeType: stringrequired
The grade assigned by the grading company, as printed on the slab.
- gradingType: string
Service requiredThe grading company that graded the card, e.g.
PSA,BGS,CGC.
- imageType: string nullable
Url requiredThe product image captured at the time of sale.
nullwhen there is none. - languageType: stringrequired
The card's language as a two-letter code, e.g.
en,fr. - lineType: object · Money
Total requiredA monetary amount as a decimal in the currency's major unit paired with its currency code —
{ amount: 14.99, currency: "USD" }means $14.99.- amountType: numberrequired
Decimal amount in the currency's major unit (e.g.
5.23for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD. - currencyType: string enumrequiredvalues
- U
S D US Dollar.
- E
U R Euro.
- G
B P British Pound.
- C
A D Canadian Dollar.
- C
H F Swiss Franc.
- productType: integer · CatalogId
Id min:-9007199254740991max:9007199254740991nullablerequiredThe catalogue product that was sold. Returned by
GET /v1/products.nullwhen the product is no longer in the catalogue.A catalogue product or expansion id — a stable integer. Games are addressed by their slug instead.
- productType: string
Name requiredThe product name captured at the time of sale.
- quantityType: integermin:-9007199254740991max:9007199254740991required
How many units of this item were sold.
- unitType: object · Money
Price requiredA monetary amount as a decimal in the currency's major unit paired with its currency code —
{ amount: 14.99, currency: "USD" }means $14.99.- amountType: numberrequired
Decimal amount in the currency's major unit (e.g.
5.23for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD. - currencyType: string enumrequiredvalues
- U
S D US Dollar.
- E
U R Euro.
- G
B P British Pound.
- C
A D Canadian Dollar.
- C
H F Swiss Franc.
{
"productId": 50212,
"productName": "Dark Magician (SDMY-EN001)",
"imageUrl": "https://images.cardnexus.com/yugioh/SDMY-EN001.png",
"condition": "NM",
"language": "en",
"finish": "Standard",
"graded": null,
"quantity": 2,
"unitPrice": {
"amount": 4.5,
"currency": "EUR"
},
"lineTotal": {
"amount": 9,
"currency": "EUR"
}
}