contractCreationJourney
Get details about a contract creation journey.
Arguments
The number of the contract journey.
Possible Errors
Allowed Viewers
Required Permissions
Can query contracts Can query contract journeysQuery 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 ContractCreationJourney($number: String!) {
contractCreationJourney(number: $number) {
context {
...ContractCreationContextFragment
}
contractDetails {
...ContractDetailsFragment
}
journeyType
notes {
...ContractNoteTypeFragment
}
number
orderReference
requestedAt
status
}
}
Variables
{
"number": "party-common-develop-do-last"
}
Response
{
"data": {
"contractCreationJourney": {
"context": ContractCreationContext,
"contractDetails": ContractDetails,
"journeyType": "CONTRACT_CREATION",
"notes": [ContractNoteType],
"number": "seek-wind-dog-exist-natural",
"orderReference": "hope-later-election-many-book",
"requestedAt": "1982-02-06T11:48:44.529284+00:00",
"status": "IN_PROGRESS"
}
}
}