Skip to content
Last update: December 17, 2024

postProcessPurchaseRequestSources mutation

This mutation performs post-processing actions on extracted purchase request source data, such as creating line items.

Arguments

The InputPostProcessPurchaseRequestSourcesType! represents the input object for post-processing purchase request sources.

Field Description
purchaseRequestId String! The Id of the purchase request for which post-processing is performed.

Possible returns

Possible return Description
PurchaseRequestType Defines the properties and fields associated with a purchase request.
1
2
3
4
5
mutation postProcessPurchaseRequestSources($command: InputPostProcessPurchaseRequestSourcesType!) {  
  postProcessPurchaseRequestSources(command: $command) {  
    id  
  }  
}  
1
2
3
4
5
{  
  "command": {  
    "purchaseRequestId": "8a4f3656-0aa1-43b1-aafa-3545286d6f4b"  
  }  
}