offerForQuoting
Arguments
The identifier of the offer to query.
Returns
OfferTypePossible Errors
Allowed Viewers
Required Permissions
Can create quoting offer groupQuery 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 OfferForQuoting($identifier: ID) {
offerForQuoting(identifier: $identifier) {
acceptedAt
createdBy {
...ActorTypeFragment
}
description
identifier
quote {
...QuoteType_Fragment
}
rejectedAt
validFrom
validTo
}
}
Variables
{
"identifier": "50981583"
}
Response
{
"data": {
"offerForQuoting": {
"acceptedAt": "2009-10-09T08:13:24.137242+00:00",
"createdBy": ActorType,
"description": "last-protect-culture-moment-question",
"identifier": "87758530",
"quote": QuoteType_,
"rejectedAt": "1994-02-05T05:56:57.568456+00:00",
"validFrom": "1992-12-06T03:46:55.587021+00:00",
"validTo": "2018-09-24T23:01:34.892215+00:00"
}
}
}