contractCreationJourney
Get details about a contract creation journey.
Arguments
The number of the contract journey.
Examples
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 ContractCreationJourney($number: String!) {
contractCreationJourney(number: $number) {
context {
...ContractCreationContextFragment
}
contractDetails {
...ContractDetailsFragment
}
journeyType
notes {
...ContractNoteTypeFragment
}
number
orderReference
requestedAt
status
}
}
Variables
{
"number": "film-few-media-only-nearly"
}
Response
{
"data": {
"contractCreationJourney": {
"context": ContractCreationContext,
"contractDetails": ContractDetails,
"journeyType": "CONTRACT_CREATION",
"notes": [ContractNoteType],
"number": "with-clear-PM-yes-save",
"orderReference": "not-happy-I-view-time",
"requestedAt": "2007-12-07T21:58:21.831472+00:00",
"status": "IN_PROGRESS"
}
}
}