{
	"info": {
		"_postman_id": "b0710829-bb75-411d-abd8-3d3b9a9edb33",
		"name": "Qombo - VoP test collection",
		"description": "Discover the Qombo VoP API which implements the scheme defined by the EPC.\n\nIn this collection, you will find:\n\n- `/vop/v1/verify`: how to send a verification request to Qombo (**Requesting**)\n    \n- `/vop/v1/verify/bulk`: how to send a bulk verification to Qombo (**Requesting Bulk**)\n    \n- `/vop/v1/expose`: how to send your data to Qombo to be exposed, and delete it (**Responding - Cloud**):\n    \n- `/vop/v1/account-holder`: how to respond to a request made by Qombo (**Responding - On-Demand**)\n    \n- `/vop/v1/payee-verifications`: how Qombo will respond to an external PSP request, with you client data\n    \n- `/vop/v1/logs/request/search`: fetch logs of VOP request sent\n    \n- `/vop/v1/logs/response/search`: fetch logs of VOP request received\n    \n\nFor each of these endpoints, find a list of examples you can try.\n\nTo learn more, read the full documentation [here.](https://qombo-vop.readme.io)\n\n## **Getting started guide**\n\nTo start using the Qombo VoP API, you need to:\n\n- use a valid sandbox API Key to send requests to the API endpoints. It must be included in each request with the `x-api-key` request header. **Set it in the** _**Variables**_ **tab of Postman.**\n    \n- if you use the **Responding - On-Demand** option, you need to set your api url in the _Variables_ tab of Postman to try the request\n    \n\n## Test list\n\nTo ensure everything is configured properly, you need to test the following cases:\n\n- Send a verification: `/vop/v1/verify`\n    \n- Send a bulk verification (optional): `/vop/v1/verify/bulk`\n    \n- Expose your data: `/vop/v1/expose` or `/vop/v1/account-holder`\n    \n- Respond to a request: `/vop/v1/payee-verifications`\n    \n\n### **Need some help?**\n\nIn case you have questions, go through our documentation [here](https://qombo-vop.readme.io) or contact us at [support@qombo.tech](https://mailto:support@qombo.tech).",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "25895758"
	},
	"item": [
		{
			"name": "vop/v1/verify",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"party\": {\n      \"name\": \"Jacques Dubois\"\n    },\n    \"iban\": \"FR2222739000704297147417S01\"\n  }",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"verify"
					]
				}
			},
			"response": [
				{
					"name": "organisation - MATCH - 1 check with id",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"companyIds\": [\n            {\n                \"type\": \"FR_SIREN\",\n                \"value\": \"123456781\"\n            }\n        ]\n    },\n    \"iban\": \"FR2222739000704297147417S25\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - NO MATCH - 1 check with id",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"companyIds\": [\n            {\n                \"type\": \"FR_SIREN\",\n                \"value\": \"000000000\"\n            }\n        ]\n    },\n    \"iban\": \"FR2222739000704297147417S26\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - NOAP",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"companyIds\": [\n            {\n                \"type\": \"LEI\", // information not available in database\n                \"value\": \"00000000000000000000\"\n            }\n        ]\n    },\n    \"iban\": \"FR2222739000704297147417S25\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - MATCH - name check",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"name\": \"Rennes Telecom\"\n    },\n    \"iban\": \"FR2222739000704297147417S26\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - MATCH - 2 checks with id",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"companyIds\": [\n            {\n                \"type\": \"EU_VAT\",\n                \"value\": \"FR06123456711\"\n            },\n            {\n                \"type\": \"LEI\",\n                \"value\": \"TH6L00QFS4IYAAIVVG43\"\n            }\n        ]\n    },\n    \"iban\": \"FR2222739000704297147417S24\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "individual - MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n      \"name\": \"Jacques Duboit\"\n    },\n    \"iban\": \"FR2222739000704297147417S01\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "individual + optout - MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"name\": \"Jacques Duboit\"\n    },\n    \"iban\": \"FR2222739000704297147417S01\",\n    \"optout\": {\n        \"enabled\": true,\n        \"duration\": 24\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "individual - CLOSE MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n      \"name\": \"Eliot Legrand\"\n    },\n    \"iban\": \"FR2222739000704297147417S02\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "individual - NO MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n      \"name\": \"Jacques Dupont\"\n    },\n    \"iban\": \"FR2222739000704297147417S06\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "individual - NOAP",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n      \"name\": \"Jean Duboit\"\n    },\n    \"iban\": \"FR2222739000704297147417S99\" // IBAN not in Qombo database\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "BAD REQUEST",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"companyIds\": [\n            {\n                \"type\": \"LEI\",\n                \"value\": \"000000000\"\n            }\n        ]\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/verify/bulk",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"party\": {\n                \"name\": \"Jacques Dubois\"\n            },\n            \"iban\": \"FR2222739000704297147417S01\"\n        }\n    ]\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/verify/bulk",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"verify",
						"bulk"
					]
				}
			},
			"response": [
				{
					"name": "multiple - no optout",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"party\": {\n                \"name\": \"Jacques Dubois\"\n            },\n            \"iban\": \"FR2222739000704297147417S01\"\n        },\n        {\n            \"id\": \"2\",\n            \"party\": {\n                \"name\": \"Justine Blandin\"\n            },\n            \"iban\": \"FR2222739000704297147417S05\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify/bulk",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify",
								"bulk"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "multiple - optout",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"optout\": true,\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"party\": {\n                \"name\": \"Jacques Dubois\"\n            },\n            \"iban\": \"FR2222739000704297147417S01\"\n        },\n        {\n            \"id\": \"2\",\n            \"party\": {\n                \"name\": \"Justine Blandin\"\n            },\n            \"iban\": \"FR2222739000704297147417S05\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify/bulk",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify",
								"bulk"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "BAD REQUEST",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"optout\": true,\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"party\": {\n                \"name\": \"Jacques Dubois\"\n            },\n            \"iban\": \"FR2222739000704297147417S01\"\n        },\n        {\n            \"id\": \"1\",\n            \"party\": {\n                \"name\": \"Justine Blandin\"\n            },\n            \"iban\": \"FR2222739000704297147417S05\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/verify/bulk",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"verify",
								"bulk"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/expose",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"data\": [\n        // individual account with account type\n        {\n            \"iban\": \"FR4412739000704297147417S68\",\n            \"accountType\": \"INDIVIDUAL_ACCOUNT\",\n            \"accountInformation\": {\n                \"firstNames\": \"Jean\",\n                \"lastNames\": \"Duboit\"\n            }\n        },\n        // individual account without account type\n        {\n            \"iban\": \"FR6714508000701582342534B76\",\n            \"accountInformation\": {\n                \"firstNames\": \"Louis\",\n                \"lastNames\": \"Martin\"\n            }\n        },\n        // organisation account with legal name and SIREN\n        {\n            \"iban\": \"FR5017569000501495388788K45\",\n            \"accountInformation\": {\n                \"legalName\": \"Company1\",\n                \"companyIds\": [\n                    {\n                        \"type\": \"FR_SIREN\",\n                        \"value\": \"111111111\"\n                    }\n                ]\n            }\n        },\n        // organisation account with legal name, commercial name and multiple identifiers\n        {\n            \"iban\": \"FR7017569000703594727329Z02\",\n            \"accountInformation\": {\n                \"legalName\": \"Company2\",\n                \"commercialName\": \"Company2\",\n                \"companyIds\": [\n                    {\n                        \"type\": \"LEI\",\n                        \"value\": \"LEI_2222\"\n                    },\n                    {\n                        \"type\": \"FR_SIREN\",\n                        \"value\": \"222222222\"\n                    }\n                ]\n            }\n        }\n    ]\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/expose",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"expose"
					]
				}
			},
			"response": [
				{
					"name": "individuals",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": [\n        // individual account with account type\n        {\n            \"iban\": \"FR0000739000704297147417S01\",\n            \"accountInformation\": {\n                \"primaryAccountHolder\": {\n                    \"firstName\": \"Jean\",\n                    \"lastName\": \"Duboit\"\n                }\n            },\n            \"accountType\": \"INDIVIDUAL_ACCOUNT\"\n        },\n        // individual account without account type\n        {\n            \"accountInformation\": {\n                \"primaryAccountHolder\": {\n                    \"firstName\": \"Louis\",\n                    \"lastName\": \"Martin\"\n                }\n            },\n            \"iban\": \"FR0000739000704297147417S02\"\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/expose",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"expose"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisations",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": [\n        // organisation account with legal name and SIREN\n        {\n            \"iban\": \"FR0000739000704297147417S20\",\n            \"accountInformation\": {\n                \"legalName\": \"Company1\",\n                \"companyIds\": [\n                    {\n                        \"type\": \"FR_SIREN\",\n                        \"value\": \"111111111\"\n                    }\n                ]\n            }\n        },\n        // organisation account with legal name, commercial name and multiple identifiers\n        {\n            \"iban\": \"FR0000739000704297147417S21\",\n            \"accountInformation\": {\n                \"legalName\": \"Company2\",\n                \"commercialName\": \"Company2 SARL\",\n                \"companyIds\": [\n                    {\n                        \"type\": \"LEI\",\n                        \"value\": \"22222222222222222222\"\n                    },\n                    {\n                        \"type\": \"FR_SIREN\",\n                        \"value\": \"222222222\"\n                    }\n                ]\n            }\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/expose",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"expose"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "BAD REQUEST",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": [\n        {\n            \"iban\": \"FR0000739000704297147417S00\",\n            \"accountInformation\": {\n                \"companyIds\": [\n                    {\n                        \"type\": \"FR_SIREN\",\n                        \"value\": \"111111111\"\n                    }\n                ]\n            }\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/expose",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"expose"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/expose",
			"request": {
				"method": "DELETE",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/expose",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"expose"
					]
				}
			},
			"response": [
				{
					"name": "multiple ibans",
					"originalRequest": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/expose?iban=FR1111739000704297147417S05,FR1111739000704297147417S06",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"expose"
							],
							"query": [
								{
									"key": "iban",
									"value": "FR1111739000704297147417S05,FR1111739000704297147417S06"
								}
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/payee-verifications",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "x-request-id",
						"value": "{{$randomUUID}}",
						"type": "text"
					},
					{
						"key": "x-request-timestamp",
						"value": "{{$isoTimestamp}}",
						"type": "text"
					},
					{
						"key": "accept",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"party\": {\n        \"name\": \"Jacques Dubois\" // name of your customer\n    },\n    \"partyAccount\": {\n        \"iban\": \"FR2222739000704297147417S01\" // IBAN of your customer\n    },\n    \"partyAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKTWOXXXX\"\n        }\n    },\n    \"requestingAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKONEXXXX\" // your BIC code\n        }\n    }\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/payee-verifications",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"payee-verifications"
					]
				}
			},
			"response": [
				{
					"name": "name - CLOSE MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"key": "x-request-id",
								"value": "{{$randomUUID}}",
								"type": "text"
							},
							{
								"key": "x-request-timestamp",
								"value": "{{$isoTimestamp}}",
								"type": "text"
							},
							{
								"key": "accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"name\": \"Jacques Dubois\" // name of your customer\n    },\n    \"partyAccount\": {\n        \"iban\": \"FR2222739000704297147417S01\" // IBAN of your customer\n    },\n    \"partyAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKTWOXXXX\"\n        }\n    },\n    \"requestingAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKONEXXXX\" // your BIC code\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/payee-verifications",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"payee-verifications"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "name - MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"key": "x-request-id",
								"value": "{{$randomUUID}}",
								"type": "text"
							},
							{
								"key": "x-request-timestamp",
								"value": "{{$isoTimestamp}}",
								"type": "text"
							},
							{
								"key": "accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"name\": \"Jacques Duboit\" // name of your customer\n    },\n    \"partyAccount\": {\n        \"iban\": \"FR2222739000704297147417S01\" // IBAN of your customer\n    },\n    \"partyAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKTWOXXXX\"\n        }\n    },\n    \"requestingAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKONEXXXX\" // your BIC code\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/payee-verifications",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"payee-verifications"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - LEI - MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"key": "x-request-id",
								"value": "{{$randomUUID}}",
								"type": "text"
							},
							{
								"key": "x-request-timestamp",
								"value": "{{$isoTimestamp}}",
								"type": "text"
							},
							{
								"key": "accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"identification\": {\n            \"organisationId\": {\n                \"lei\": \"TH6L00QFS4IYAAIVVG43\" // LEI of your customer\n            }\n        }\n    },\n    \"partyAccount\": {\n        \"iban\": \"FR2222739000704297147417S24\" // IBAN of your customer\n    },\n    \"partyAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKTWOXXXX\"\n        }\n    },\n    \"requestingAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKONEXXXX\" // your BIC code\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/payee-verifications",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"payee-verifications"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisation - SIRET - MATCH",
					"originalRequest": {
						"method": "POST",
						"header": [
							{
								"key": "x-request-id",
								"value": "{{$randomUUID}}",
								"type": "text"
							},
							{
								"key": "x-request-timestamp",
								"value": "{{$isoTimestamp}}",
								"type": "text"
							},
							{
								"key": "accept",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"party\": {\n        \"identification\": {\n            \"organisationId\": {\n                \"others\": [\n                    {\n                        \"identification\": \"12345678000023\", // SIRET of your customer\n                        \"schemeNameCode\": \"SRET\"\n                    }\n                ]\n            }\n        }\n    },\n    \"partyAccount\": {\n        \"iban\": \"FR2222739000704297147417S23\" // IBAN of your customer\n    },\n    \"partyAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKTWOXXXX\"\n        }\n    },\n    \"requestingAgent\": {\n        \"financialInstitutionId\": {\n            \"bicfi\": \"BANKONEXXXX\" // your BIC code\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/payee-verifications",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"payee-verifications"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/logs/request/search",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"page\": 1\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/request/search",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"logs",
						"request",
						"search"
					]
				}
			},
			"response": [
				{
					"name": "last 100 logs",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"page\": 1\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/request/search",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"logs",
								"request",
								"search"
							]
						}
					},
					"_postman_previewlanguage": "",
					"header": [],
					"cookie": [],
					"body": ""
				},
				{
					"name": "filtered logs",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"page\": 1,\n    \"iban\": \"FR11\",\n    \"targetBic\": \"BANKONEXXXX\",\n    \"matchCodes\": [\n        \"MTCH\",\n        \"CMTC\"\n    ],\n    \"additionalMatchCodes\": [\n        \"MTCH\"\n    ],\n    \"matchStatuses\": [\n        \"success\"\n    ],\n    \"input\": \"Antoine\",\n    \"date\": {\n        \"from\": \"2025-01-01T00:00:00Z\",\n        \"to\": \"2025-01-01T23:59:59Z\"\n    },\n    \"ibanSeen\": true,\n    \"ibanWhitelisted\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/request/search",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"logs",
								"request",
								"search"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "vop/v1/logs/response/search",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"page\": 1\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/response/search",
					"host": [
						"{{qomboApiBaseUrl}}"
					],
					"path": [
						"vop",
						"v1",
						"logs",
						"response",
						"search"
					]
				}
			},
			"response": [
				{
					"name": "last 100 logs",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"page\": 1\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/response/search",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"logs",
								"response",
								"search"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "filtered logs",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"page\": 1,\n    \"iban\": \"FR11\",\n    \"originBic\": \"BANKONEXXXX\",\n    \"matchCodes\": [\n        \"MTCH\",\n        \"CMTC\"\n    ],\n    \"inputType\": [\n        \"name\"\n    ],\n    \"input\": \"Antoine\",\n    \"date\": {\n        \"from\": \"2025-01-01T00:00:00Z\",\n        \"to\": \"2025-01-01T23:59:59Z\"\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{qomboApiBaseUrl}}/vop/v1/logs/response/search",
							"host": [
								"{{qomboApiBaseUrl}}"
							],
							"path": [
								"vop",
								"v1",
								"logs",
								"response",
								"search"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		},
		{
			"name": "account-holder",
			"request": {
				"method": "POST",
				"header": [],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"iban\": \"FR4412739000704297147417S68\"\n}",
					"options": {
						"raw": {
							"language": "json"
						}
					}
				},
				"url": {
					"raw": "{{yourApiBaseUrl}}/account-holder",
					"host": [
						"{{yourApiBaseUrl}}"
					],
					"path": [
						"account-holder"
					]
				}
			},
			"response": [
				{
					"name": "individual",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"iban\": \"FR4412739000704297147417S68\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{yourApiBaseUrl}}/account-holder",
							"host": [
								"{{yourApiBaseUrl}}"
							],
							"path": [
								"account-holder"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				},
				{
					"name": "organisations",
					"originalRequest": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"iban\": \"FR5017569000501495388788K45\",\n    \"identifiersType\": [\"LEI\"]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{yourApiBaseUrl}}/account-holder",
							"host": [
								"{{yourApiBaseUrl}}"
							],
							"path": [
								"account-holder"
							]
						}
					},
					"_postman_previewlanguage": null,
					"header": null,
					"cookie": [],
					"body": null
				}
			]
		}
	],
	"auth": {
		"type": "apikey",
		"apikey": [
			{
				"key": "value",
				"value": "{{apiKey}}",
				"type": "string"
			},
			{
				"key": "key",
				"value": "x-api-key",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "qomboApiBaseUrl",
			"value": "https://api.sandbox.qombo.tech"
		},
		{
			"key": "yourApiBaseUrl",
			"value": "https://api.your_api.com",
			"type": "string"
		},
		{
			"key": "apiKey",
			"value": "your_sandbox_api_key",
			"type": "string"
		}
	]
}