Edit in GitHubLog an issue
Adobe Commerce featureExclusive feature only in Adobe Commerce (Learn more)

shareRequisitionListByToken mutation

The shareRequisitionListByToken mutation enables B2B customers to share a requisition list with colleagues within the same company using a shareable link generated on the storefront. The mutation requires requisitionListUid as an input parameter. This mutation returns the token assigned to the shared requisition list.

Syntax

Copied to your clipboard
{
shareRequisitionListByToken(
requisitionListUid: ID!
): ShareRequisitionListByTokenOutput
}

Example usage

The following example provides a token for a shareable requisition list.

Request:

Copied to your clipboard
mutation ShareRequisitionListByToken {
shareRequisitionListByToken(requisitionListUid: "OTc5") {
token
}
}

Response:

Copied to your clipboard
{
"data": {
"shareRequisitionListByToken": {
"token": "qEJD2aUhmYnf1jNoaOtlo7XwBP8BRof5GhF0L5kbdJxYMZ13OlFvy2VFy33NnUCp"
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2026 Adobe. All rights reserved.