goodsQuotes
List quotes given an account number or retrieve a Goods quote given a quote code.
Returns
[GoodsQuote]Possible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query GoodsQuotes(
$accountNumber: String,
$quoteCode: String
) {
goodsQuotes(
accountNumber: $accountNumber,
quoteCode: $quoteCode
) {
code
goodsQuotedProducts {
...GoodsQuotedProductFragment
}
hasQuoteExpired
id
quotedAt
totalNetAmount
}
}
Variables
{
"accountNumber": "A-36613D62",
"quoteCode": "baby-past-member-official-international"
}
Response
{
"data": {
"goodsQuotes": [
{
"code": "goal-write-according-whether-receive",
"goodsQuotedProducts": [GoodsQuotedProduct],
"hasQuoteExpired": true,
"id": "96178316",
"quotedAt": "1970-04-24T19:28:45.986758+00:00",
"totalNetAmount": 16
}
]
}
}