repo stringclasses 4
values | file_path stringlengths 6 193 | extension stringclasses 30
values | content stringlengths 0 5.21M | token_count int64 0 3.8M |
|---|---|---|---|---|
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/API Key - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payment Connector - Create/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "strin... | 2,083 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payment Connector - Create/event.test.js | .js | // Validate status 2xx
pm.test(
"[POST]::/account/:account_id/connectors - Status code is 2xx",
function () {
pm.response.to.be.success;
},
);
// Validate if response header has matching content-type
pm.test(
"[POST]::/account/:account_id/connectors - Content-Type is application/json",
function () {
... | 238 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payment Connector - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"variable": [
{
"key": "id",
"value": "{{payment_id}}",
"descript... | 145 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Retrieve/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/payments/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[GET]::/payments/:id - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.in... | 430 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Retrieve/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 704 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/payments - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 424 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Merchant Account - Create/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{admin_api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": ... | 599 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Merchant Account - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/accounts - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/accounts - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 391 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Merchant Account - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Retrieve Customer/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/customers/:id",
"host": ["{{baseUrl}}"],
"path": ["customers", ":id"],
"variable": [
{
"key": "id",
"value": "{{customer_id}}",
"descr... | 122 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Retrieve Customer/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/customers/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[GET]::/customers/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-Type... | 129 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Retrieve Customer/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Delete Customer/request.json | .json | {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/customers/:id",
"host": ["{{baseUrl}}"],
"path": ["customers", ":id"],
"variable": [
{
"key": "id",
"value": "{{customer_id}}",
"de... | 121 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Delete Customer/event.test.js | .js | // Validate status 2xx
pm.test("[DELETE]::/customers/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[DELETE]::/customers/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Conten... | 129 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Delete Customer/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Create Customer/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 274 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Create Customer/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/customers - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/customers - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.includ... | 364 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Create Customer/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Update Customer/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 264 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Update Customer/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/customers/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/customers/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-Ty... | 129 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Update Customer/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Ephemeral Key/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw_json_formatted": {
"customer_id": "{{customer_id}}"
}
},
"url": {
"raw": "{{baseUrl}}/ephemeral_keys",
"host": ["{{baseUrl}}"],
"path": ["... | 107 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Ephemeral Key/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/ephemeral_keys - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/ephemeral_keys - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-... | 95 |
hyperswitch | postman/collection-dir/hyperswitch/Customers/Ephemeral Key/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Retrieve/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{admin_api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": ... | 226 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Retrieve/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/accounts/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[GET]::/accounts/:id - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.in... | 302 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Retrieve/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Create/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{admin_api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": ... | 601 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/accounts - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/accounts - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 391 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Update/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{admin_api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": ... | 684 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Update/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/accounts/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/accounts/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-Type... | 307 |
hyperswitch | postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Update/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 237 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/refunds - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/refunds - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(
... | 205 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/refunds/:id",
"host": ["{{baseUrl}}"],
"path": ["refunds", ":id"],
"variable": [
{
"key": "id",
"value": "{{refund_id}}",
"description... | 148 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Retrieve/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/refunds/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[GET]::/refunds/:id - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.incl... | 209 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Retrieve/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Update/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 265 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Update/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/refunds/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/refunds/:id - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.in... | 209 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Refunds - Update/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Payments - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 890 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Payments - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/payments - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 424 |
hyperswitch | postman/collection-dir/hyperswitch/Refunds/Payments - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Health check/New Request/request.json | .json | {
"method": "GET",
"header": [],
"url": {
"raw": "{{baseUrl}}/health",
"host": ["{{baseUrl}}"],
"path": ["health"]
}
}
| 47 |
hyperswitch | postman/collection-dir/hyperswitch/Health check/New Request/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/accounts - Status code is 2xx", function () {
pm.response.to.be.success;
});
| 34 |
hyperswitch | postman/collection-dir/hyperswitch/Health check/New Request/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create Copy/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 796 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create Copy/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/payments - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 424 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create Copy/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Update/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 684 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Update/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payments/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-Type... | 435 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Update/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Session Token/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{publishable_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Conten... | 198 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Session Token/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments/session_tokens - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payments/session_tokens - Content-Type is application/json",
function () {
pm.expect(pm.response.hea... | 93 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Session Token/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"variable": [
{
"key": "id",
"value": "{{payment_id}}",
"descript... | 145 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Retrieve/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/payments/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[GET]::/payments/:id - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.in... | 430 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Retrieve/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 796 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/payments - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 424 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payment-List/request.json | .json | {
"method": "GET",
"header": [
{
"key": "api-key",
"value": "snd_0b8e1deb82f241eca47617afb1398858"
}
],
"url": {
"raw": "{{baseUrl}}/payments/list",
"host": ["{{baseUrl}}"],
"path": ["payments", "list"],
"query": [
{
"key": "customer_id",
"value": "",
... | 317 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payment-List/event.test.js | .js | // Validate status 2xx
pm.test("[GET]::/payments/list - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[GET]::/payments/list - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Content-Type... | 91 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payment-List/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Cancel/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 225 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Cancel/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments/:id/cancel - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payments/:id/cancel - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get... | 135 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Cancel/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Capture/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 225 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Capture/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments/:id/capture - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payments/:id/capture - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.g... | 441 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Capture/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Confirm/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{publishable_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
},
{
"key": "in",
"value": "header",
"type"... | 341 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Confirm/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments/:id/confirm - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payments/:id/confirm - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.g... | 441 |
hyperswitch | postman/collection-dir/hyperswitch/Payments/Payments - Confirm/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Update/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 308 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Update/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payment_methods/:id - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payment_methods/:id - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get... | 95 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Update/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Payments - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 890 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Payments - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payments - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test("[POST]::/payments - Content-Type is application/json", function () {
pm.expect(pm.response.headers.get("Content-Type")).to.include(... | 498 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Payments - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Merchant/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/account/payment_methods",
"host": ["{{baseUrl}}"],
"path": ["account", "payment_methods"],
"query": [
{
"key": "client_secret",
"value": "{{cl... | 127 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Merchant/event.test.js | .js | // Validate status 2xx
pm.test(
"[GET]::/payment_methods/:merchant_id - Status code is 2xx",
function () {
pm.response.to.be.success;
},
);
// Validate if response header has matching content-type
pm.test(
"[GET]::/payment_methods/:merchant_id - Content-Type is application/json",
function () {
pm.exp... | 102 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Merchant/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Customer/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/customers/:customer_id/payment_methods",
"host": ["{{baseUrl}}"],
"path": ["customers", ":customer_id", "payment_methods"],
"query": [
{
"key": "accep... | 363 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Customer/event.test.js | .js | // Validate status 2xx
pm.test(
"[GET]::/payment_methods/:customer_id - Status code is 2xx",
function () {
pm.response.to.be.success;
},
);
// Validate if response header has matching content-type
pm.test(
"[GET]::/payment_methods/:customer_id - Content-Type is application/json",
function () {
pm.exp... | 232 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Customer/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Create/request.json | .json | {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"options": {
"raw": {
"language": "json"
}
},
"raw_json_formatted": {
... | 293 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Create/event.test.js | .js | // Validate status 2xx
pm.test("[POST]::/payment_methods - Status code is 2xx", function () {
pm.response.to.be.success;
});
// Validate if response header has matching content-type
pm.test(
"[POST]::/payment_methods - Content-Type is application/json",
function () {
pm.expect(pm.response.headers.get("Conten... | 290 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Create/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Delete PaymentMethods/request.json | .json | {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payment_methods/:id",
"host": ["{{baseUrl}}"],
"path": ["payment_methods", ":id"],
"variable": [
{
"key": "id",
"value": "{{payment_token}}... | 132 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Delete PaymentMethods/event.test.js | .js | // Validate status 2xx
pm.test(
"[POST]::/payment_methods/:id/detach - Status code is 2xx",
function () {
pm.response.to.be.success;
},
);
// Validate if response header has matching content-type
pm.test(
"[POST]::/payment_methods/:id/detach - Content-Type is application/json",
function () {
pm.expec... | 106 |
hyperswitch | postman/collection-dir/hyperswitch/PaymentMethods/Delete PaymentMethods/response.json | .json | []
| 1 |
hyperswitch | postman/collection-dir/hyperswitch/API Key/Update API Key/request.json | .json | {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "value",
"value": "{{admin_api_key}}",
"type": "string"
},
{
"key": "key",
"value": "api-key",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-... | 276 |
hyperswitch | postman/collection-dir/hyperswitch/API Key/Update API Key/event.test.js | .js | // Validate status 2xx
pm.test(
"[POST]::/api_keys/:merchant_id/:api_key_id - Status code is 2xx",
function () {
pm.response.to.be.success;
},
);
// Validate if response header has matching content-type
pm.test(
"[POST]::/api_keys/:merchant_id/:api_key_id - Content-Type is application/json",
function () ... | 319 |
hyperswitch | postman/collection-dir/hyperswitch/API Key/Update API Key/response.json | .json | []
| 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.