repo
stringclasses
4 values
file_path
stringlengths
6
193
extension
stringclasses
23 values
content
stringlengths
0
1.73M
token_count
int64
0
724k
__index_level_0__
int64
0
10.8k
hyperswitch
postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Retrieve/response.json
.json
[]
1
4,606
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
4,607
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
4,608
hyperswitch
postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payments - Create/response.json
.json
[]
1
4,609
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
4,610
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
4,611
hyperswitch
postman/collection-dir/hyperswitch/Hackathon/QuickStart/Merchant Account - Create/response.json
.json
[]
1
4,612
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
4,613
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
4,614
hyperswitch
postman/collection-dir/hyperswitch/Customers/Retrieve Customer/response.json
.json
[]
1
4,615
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
4,616
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
4,617
hyperswitch
postman/collection-dir/hyperswitch/Customers/Delete Customer/response.json
.json
[]
1
4,618
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
4,619
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
4,620
hyperswitch
postman/collection-dir/hyperswitch/Customers/Create Customer/response.json
.json
[]
1
4,621
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
4,622
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
4,623
hyperswitch
postman/collection-dir/hyperswitch/Customers/Update Customer/response.json
.json
[]
1
4,624
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
4,625
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
4,626
hyperswitch
postman/collection-dir/hyperswitch/Customers/Ephemeral Key/response.json
.json
[]
1
4,627
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
4,628
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
4,629
hyperswitch
postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Retrieve/response.json
.json
[]
1
4,630
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
4,631
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
4,632
hyperswitch
postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Create/response.json
.json
[]
1
4,633
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
4,634
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
4,635
hyperswitch
postman/collection-dir/hyperswitch/MerchantAccounts/Merchant Account - Update/response.json
.json
[]
1
4,636
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
4,637
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
4,638
hyperswitch
postman/collection-dir/hyperswitch/Refunds/Refunds - Create/response.json
.json
[]
1
4,639
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
4,640
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
4,641
hyperswitch
postman/collection-dir/hyperswitch/Refunds/Refunds - Retrieve/response.json
.json
[]
1
4,642
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
4,643
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
4,644
hyperswitch
postman/collection-dir/hyperswitch/Refunds/Refunds - Update/response.json
.json
[]
1
4,645
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
4,646
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
4,647
hyperswitch
postman/collection-dir/hyperswitch/Refunds/Payments - Create/response.json
.json
[]
1
4,648
hyperswitch
postman/collection-dir/hyperswitch/Health check/New Request/request.json
.json
{ "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/health", "host": ["{{baseUrl}}"], "path": ["health"] } }
47
4,649
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
4,650
hyperswitch
postman/collection-dir/hyperswitch/Health check/New Request/response.json
.json
[]
1
4,651
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
4,652
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
4,653
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Create Copy/response.json
.json
[]
1
4,654
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
4,655
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
4,656
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Update/response.json
.json
[]
1
4,657
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
4,658
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
4,659
hyperswitch
postman/collection-dir/hyperswitch/Payments/Session Token/response.json
.json
[]
1
4,660
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
4,661
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
4,662
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Retrieve/response.json
.json
[]
1
4,663
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
4,664
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
4,665
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Create/response.json
.json
[]
1
4,666
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
4,667
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
4,668
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payment-List/response.json
.json
[]
1
4,669
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
4,670
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
4,671
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Cancel/response.json
.json
[]
1
4,672
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
4,673
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
4,674
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Capture/response.json
.json
[]
1
4,675
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
4,676
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
4,677
hyperswitch
postman/collection-dir/hyperswitch/Payments/Payments - Confirm/response.json
.json
[]
1
4,678
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
4,679
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
4,680
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Update/response.json
.json
[]
1
4,681
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
4,682
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
4,683
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/Payments - Create/response.json
.json
[]
1
4,684
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
4,685
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
4,686
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Merchant/response.json
.json
[]
1
4,687
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
4,688
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
4,689
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/List payment methods for a Customer/response.json
.json
[]
1
4,690
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
4,691
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
4,692
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/PaymentMethods - Create/response.json
.json
[]
1
4,693
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
4,694
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
4,695
hyperswitch
postman/collection-dir/hyperswitch/PaymentMethods/Delete PaymentMethods/response.json
.json
[]
1
4,696
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
4,697
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
4,698
hyperswitch
postman/collection-dir/hyperswitch/API Key/Update API Key/response.json
.json
[]
1
4,699
hyperswitch
postman/collection-dir/hyperswitch/API Key/List API Keys/request.json
.json
{ "auth": { "type": "apikey", "apikey": [ { "key": "value", "value": "{{admin_api_key}}", "type": "string" }, { "key": "key", "value": "api-key", "type": "string" } ] }, "method": "GET", "header": [ { "key": "Content-T...
203
4,700
hyperswitch
postman/collection-dir/hyperswitch/API Key/List API Keys/event.test.js
.js
// Validate status 2xx pm.test("[GET]::/api_keys/:merchant_id/list - Status code is 2xx", function () { pm.response.to.be.success; }); // Validate if response header has matching content-type pm.test( "[GET]::/api_keys/:merchant_id/list - Content-Type is application/json", function () { pm.expect(pm.response...
308
4,701
hyperswitch
postman/collection-dir/hyperswitch/API Key/List API Keys/response.json
.json
[]
1
4,702
hyperswitch
postman/collection-dir/hyperswitch/API Key/Create 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-...
268
4,703
hyperswitch
postman/collection-dir/hyperswitch/API Key/Create API Key/event.test.js
.js
// Validate status 2xx pm.test("[POST]::/api_keys/:merchant_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 - Content-Type is application/json", function () { pm.expect(pm.response.headers...
306
4,704
hyperswitch
postman/collection-dir/hyperswitch/API Key/Create API Key/response.json
.json
[]
1
4,705