mutation priceListCreate ($attributes: PriceListAttributes!) {
priceListCreate (attributes: $attributes) {
errors
priceList {
basePrice
code
createdAt
currencyId
id
isVisible
name
periodMonths
planId
priceAdjustmentPercentage
priceDescription
productId
renewalTermMonths
sku
trialAllowed
trialLengthDays
updatedAt
}
}
}
{
"attributes": {
"planId": "456123",
"code": "",
"name": "",
"sku": "",
"currencyId": "456123",
"isVisible": true,
"trialAllowed": true,
"trialLengthDays": 123,
"trialExpirationAction": "TrialExpirationAction",
"renewalTermMonths": 123,
"priceAdjustmentAction": "PriceAdjustmentAction",
"priceAdjustmentTiming": "PriceAdjustmentTiming",
"priceAdjustmentPercentage": "1.00"
}
}