Skip to main content

How to generate delivery ticket details

Requesting delivery ticket generation

To request delivery ticket generation for a task, use the generateLegacyTaskTicketDetails mutation. You have to provide the legacyTaskId of the task you want to generate it for. You can also provide an optional crawlId - if missing, the latest Crawl from the task trend will be used for the generation.

mutation generateLegacyTaskTicketDetails(
$input: GenerateLegacyTaskTicketDetailsInput!
) {
generateLegacyTaskTicketDetails(input: $input) {
legacyTask {
id
ticketGenerationRequestedAt
ticketGenerationFinishedAt
ticketDetails
}
}
}

Try in explorer

Retrieving delivery ticket details

After generation request is made, wait a moment for it to complete. To retrieve the delivery ticket details, use the getLegacyTask query and the id of the task you requested the generation for.

query getLegacyTask($id: ObjectID!) {
getLegacyTask(id: $id) {
id
ticketGenerationRequestedAt
ticketGenerationFinishedAt
ticketDetails
}
}

Try in explorer