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

sharedRequisitionList query

The sharedRequisitionList query uses a token to retrieve a shared requisition list. The response can contain the sender_name and requisition_list object.

Syntax

Copied to your clipboard
{
sharedRequisitionList(
token: String!
): SharedRequisitionListOutput
}

Example usage

The following example opens a shared requisition list by specifying the shared token.

Request:

Copied to your clipboard
query SharedRequisitionList {
sharedRequisitionList(
token: "qEJD2aUhmYnf1jNoaOtlo7XwBP8BRof5GhF0L5kbdJxYMZ13OlFvy2VFy33NnUCp"
) {
sender_name
requisition_list {
description
name
uid
items(currentPage: 1, pageSize: 20) {
total_pages
items {
quantity
sku
uid
product {
attribute_set_id
name
}
}
page_info {
current_page
page_size
total_pages
}
}
}
}
}

Response:

Copied to your clipboard
{
"data": {
"sharedRequisitionList": {
"sender_name": "Jane",
"requisition_list": {
"description": "Test RL sharing",
"name": "Shared RL",
"uid": "OTc5",
"items": {
"total_pages": 1,
"items": [
{
"quantity": 2,
"sku": "Augusta",
"uid": "NDEw",
"product": {
"attribute_set_id": 4,
"name": "Augusta"
}
}
],
"page_info": {
"current_page": 1,
"page_size": 20,
"total_pages": 1
}
}
}
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2026 Adobe. All rights reserved.