...
A modal will open, then you should input the endpoint starting with ‘https://’ and subscriptions starting with ‘wss://https://’, then click to save it.
...
Code Block |
---|
https://euw3-dev-plk.rbictg.com/graphql
wss://euw3-dev-plk.rbictg.com/graphql |
Operating section
Change the graphQL query according to your needs in the Operation section / Add the Query and fields using UI:
...
Code Block |
---|
query GetRefillDrinkQRCode($orderUpdateAt: String!, $transactionId: String!, $storeNumber: String!) {
getRefillDrinkQRCode(orderUpdateAt: $orderUpdateAt, transactionId: $transactionId, storeNumber: $storeNumber) {
qrCodeInfo
}
} |
Variables section
In the Variables section, add your JSON structure with the data for the request:
...
Code Block |
---|
{
"orderUpdateAt": "2023-10-26T15:49:29",
"transactionId": "b9e14f43-f785-4281-9266-32b78b36be63",
"storeNumber": "1111"
} |
The scenario above, for example, involves using data of an order like transactionId, orderUpdateAt, and restaurant identification.
...
In this case, it doesn't need an Authorization (Bearer Token), just the x-ui-language and x-ui-region attributes with the Spanish language.
Code Block |
---|
x-ui-language = ES
x-ui-region = ES |
Result
Finally, click on the name of the query and see the result in the Response section
...