Merge pull request #37 from bhavaninataraj/main

Fix service Id
This commit is contained in:
Beppe Catanese
2023-11-07 13:41:55 +01:00
committed by GitHub

View File

@@ -1,8 +1,10 @@
{
"info": {
"_postman_id": "03a31df2-4772-4970-971e-7ab28084aa48",
"name": "Adyen Terminal API",
"description": "## Overview\n\nThe Adyen Terminal API lets you make payments, issue refunds, collect shopper information, and perform other shopper-terminal interactions using a payment terminal supplied by Adyen.\n\nThis API reference provides information on available operations and how to use them. To learn more about the terminal API, visit [terminal API documentation](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api/). To know about In-Person payments, visit [In-Person payments documentation.](https://docs.adyen.com/point-of-sale/)\n\nThe collection consists of only operations using terminal API. For other operations like capture a payment, pay with token in case of recurring payments, authorisation adjustments, use [Adyen's checkout API](https://www.postman.com/adyendev/workspace/adyen-apis/collection/25716737-46ad970e-dc9e-4246-bac2-769c6083e7b5) collection. For operations like create stores, manage terminal fleet, use [Adyen's management API collection](https://www.postman.com/adyendev/workspace/adyen-apis/collection/25716737-00d5d4da-fec7-4c1a-a63f-76fcd6c1532d).\n\n## How to use it\n\n**Fork** the \"Adyen Terminal API env\" environment and configure the variables: Base URL, API key etc..\n\n> VERY IMPORTANT: fork it in a PRIVATE workspace. Keep your credentials, tokens and sensitive data private. \n \n\nFill the variables values before sending any request.\n\n`baseUrl`: The endpoint you are using to process payments. [More info](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api#cloud).\n\n`X-API-Key`: The API Key of the web service user you want to use to process the payment. You get this API key from [Adyen's Customer Area](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api#api-key). This key is needed only for cloud terminal API.\n\n`poiId`: The terminal ID of the tarminal that is going to be use for payments. e.g. V400m-321987654\n\n`saleId`: Your unique ID for the POS system component to send this request from.e.g. **TestPOS**\n\n`currency`: The chosen currency you want to process the payment.e.g. **EUR**\n\n**Fork** the Adyen Terminal API collection",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
"description": "## Overview\n\nThe Adyen Terminal API lets you make payments, issue refunds, collect shopper information, and perform other shopper-terminal interactions using a payment terminal supplied by Adyen.\n\nThis API reference provides information on available operations and how to use them. To learn more about the terminal API, visit [terminal API documentation](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api/). To know about In-Person payments, visit [In-Person payments documentation.](https://docs.adyen.com/point-of-sale/)\n\nThe collection consists of only operations using terminal API. For other operations like capture a payment, pay with token in case of recurring payments, authorisation adjustments, use [Adyen's checkout API](https://www.postman.com/adyendev/workspace/adyen-apis/collection/25716737-46ad970e-dc9e-4246-bac2-769c6083e7b5) collection. For operations like create stores, manage terminal fleet, use [Adyen's management API collection](https://www.postman.com/adyendev/workspace/adyen-apis/collection/25716737-00d5d4da-fec7-4c1a-a63f-76fcd6c1532d).\n\n## How to use it\n\n**Fork** the \"Adyen Terminal API env\" environment and configure the variables: Base URL, API key etc..\n\n> VERY IMPORTANT: fork it in a PRIVATE workspace. Keep your credentials, tokens and sensitive data private. \n \n\nFill the variables values before sending any request.\n\n`baseUrl`: The endpoint you are using to process payments. [More info](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api#cloud).\n\n`X-API-Key`: The API Key of the web service user you want to use to process the payment. You get this API key from [Adyen's Customer Area](https://docs.adyen.com/point-of-sale/design-your-integration/terminal-api#api-key). This key is needed only for cloud terminal API.\n\n`poiId`: The terminal ID of the tarminal that is going to be use for payments. e.g. V400m-321987654\n\n`saleId`: Your unique ID for the POS system component to send this request from.e.g. **TestPOS**\n\n`currency`: The currency you want to process the payment.e.g. **EUR**\n\n**Fork** the Adyen Terminal API collection",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "19718139"
},
"item": [
{
@@ -6354,7 +6356,7 @@
"script": {
"type": "text/javascript",
"exec": [
"pm.globals.set(\"serviceId\", \"POS_\" + Math.floor(Math.random() * 10000000000)); "
"pm.globals.set(\"serviceId\", \"POS\" + Math.floor(Math.random() * 10000000)); "
]
}
},