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/Happy Cases/Scenario2-Create payment with confirm false/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... | 499 | 4,506 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/Payments - Retrieve/response.json | .json | []
| 1 | 4,507 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/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": {
... | 705 | 4,508 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/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(... | 492 | 4,509 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/Payments - Create/response.json | .json | []
| 1 | 4,510 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/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,511 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/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... | 513 | 4,512 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario2-Create payment with confirm false/Payments - Confirm/response.json | .json | []
| 1 | 4,513 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - 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": {
... | 238 | 4,514 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Create-copy/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(
... | 349 | 4,515 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Create-copy/response.json | .json | []
| 1 | 4,516 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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,517 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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(
... | 346 | 4,518 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Create/response.json | .json | []
| 1 | 4,519 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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,520 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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... | 351 | 4,521 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Retrieve/response.json | .json | []
| 1 | 4,522 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,523 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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... | 500 | 4,524 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Retrieve/response.json | .json | []
| 1 | 4,525 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Retrieve-copy/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,526 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Retrieve-copy/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... | 546 | 4,527 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Retrieve-copy/response.json | .json | []
| 1 | 4,528 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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": {
... | 705 | 4,529 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/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(... | 492 | 4,530 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Payments - Create/response.json | .json | []
| 1 | 4,531 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Retrieve-copy/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,532 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Retrieve-copy/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... | 353 | 4,533 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario10-Partial refund/Refunds - Retrieve-copy/response.json | .json | []
| 1 | 4,534 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,535 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/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... | 502 | 4,536 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/Payments - Retrieve/response.json | .json | []
| 1 | 4,537 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/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": {
... | 816 | 4,538 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/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(... | 495 | 4,539 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/Payments - Create/response.json | .json | []
| 1 | 4,540 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/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"... | 434 | 4,541 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/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... | 725 | 4,542 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario17-Bank Redirect-eps/Payments - Confirm/response.json | .json | []
| 1 | 4,543 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,544 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/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... | 502 | 4,545 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/Payments - Retrieve/response.json | .json | []
| 1 | 4,546 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/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,547 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/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(... | 492 | 4,548 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/Payments - Create/response.json | .json | []
| 1 | 4,549 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/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,550 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/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... | 583 | 4,551 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario7-Create 3DS payment with confirm false/Payments - Confirm/response.json | .json | []
| 1 | 4,552 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,553 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/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... | 497 | 4,554 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/Payments - Retrieve/response.json | .json | []
| 1 | 4,555 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/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": {
... | 705 | 4,556 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/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(... | 492 | 4,557 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/Payments - Create/response.json | .json | []
| 1 | 4,558 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/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,559 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/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... | 409 | 4,560 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario5-Void the payment/Payments - Cancel/response.json | .json | []
| 1 | 4,561 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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": {
... | 238 | 4,562 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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(
... | 349 | 4,563 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/Refunds - Create/response.json | .json | []
| 1 | 4,564 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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,565 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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... | 353 | 4,566 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/Refunds - Retrieve/response.json | .json | []
| 1 | 4,567 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,568 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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... | 500 | 4,569 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/Payments - Retrieve/response.json | .json | []
| 1 | 4,570 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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": {
... | 705 | 4,571 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/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(... | 492 | 4,572 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario9-Refund full payment/Payments - Create/response.json | .json | []
| 1 | 4,573 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,574 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/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... | 498 | 4,575 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/Payments - Retrieve/response.json | .json | []
| 1 | 4,576 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/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": {
... | 705 | 4,577 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/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(... | 492 | 4,578 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/Payments - Create/response.json | .json | []
| 1 | 4,579 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/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,580 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/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... | 672 | 4,581 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario4-Create payment with Manual capture/Payments - Capture/response.json | .json | []
| 1 | 4,582 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/Payments - Retrieve/request.json | .json | {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/payments/:id?force_sync=true",
"host": ["{{baseUrl}}"],
"path": ["payments", ":id"],
"query": [
{
"key": "force_sync",
"value": "true"
}... | 175 | 4,583 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/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... | 502 | 4,584 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/Payments - Retrieve/response.json | .json | []
| 1 | 4,585 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/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": {
... | 793 | 4,586 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/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(... | 495 | 4,587 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/Payments - Create/response.json | .json | []
| 1 | 4,588 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/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"... | 423 | 4,589 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/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... | 734 | 4,590 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/Happy Cases/Scenario13-BNPL-afterpay/Payments - Confirm/response.json | .json | []
| 1 | 4,591 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/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,592 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/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,593 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Refunds - Create/response.json | .json | []
| 1 | 4,594 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/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,595 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/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,596 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Refunds - Retrieve/response.json | .json | []
| 1 | 4,597 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/API Key - Create/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,598 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/API Key - Create/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,599 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/API Key - Create/response.json | .json | []
| 1 | 4,600 |
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 | 4,601 |
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 | 4,602 |
hyperswitch | postman/collection-dir/hyperswitch/Hackathon/QuickStart/Payment Connector - Create/response.json | .json | []
| 1 | 4,603 |
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 | 4,604 |
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 | 4,605 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.