CentralPay provides a powerful payment processing API, enabling you to process multi-channel transactions at local and/or international levels.
If you have any problems, before do a technical support ticket, you can see in user case in doc-api.
CentralPay provides a powerful payment processing API, enabling you to process multi-channel transactions at local and/or international levels.
If you have any problems, before do a technical support ticket, you can see in user case in doc-api.
CentralPay API is a REST based API that allows a fast and easy integration of the payment forms. The API uses HTTP to transport and return all responses encoded in JSON.
To simplify integration and testing, CentralPay provides a sandbox where you can carry out your tests.
Authorisations are simulated in test mode.
Test and production modes can be active at the same time - each mode having separate set of public keys and two API ENDPOINT.
We ensure that the data created in test mode will never reach your customers nor cost you any money.
API ENDPOINT
The following link is the core link used to test the API: https://test-api.centralpay.net/
The purpose of this document is to present the features of the CentralPay REST API.
By using our Tokenization service and Token.js, sensitive data will not be handled on your servers. The service is fully secure and simplifies your obligations to comply with PCI DSS rules.
2 integration methods are available:
Creation of "Customer" and "Card"
Marketplace & Plateforme features
This new architecture of the API allows us to continuously improve the platform's functionalities and offer new features such as:
cardTokenId | A dematerialized token of the credit card valid for 5 minutes. |
Transaction | An accepted, refused or abandoned credit card transaction made by a Buyer |
PoS | A physical, mobile, or online Point of Sale |
Customer | A consumer or buyer for which means of payment have been registered |
Card | A Payment Card : VISA, Visa Electron, Mastercard, Maestro, American Express, Diners, ... |
Contract | A Merchant Contract recognized by the card schemes identifying the transactions perfomed |
Wallet |
A Wallet storing the monetary value |
The test platform url is: https://test-api.centralpay.net/v2/rest/
This test platform allows you to test all the services explained within this documentation.
CentralPay will provide you with connection logs to execute the existing functions.
All functions use the « MIME » type: "application/x-www-form-urlencoded".
Functions use the following methods:
CentralPay API uses "HTTP Basic authentication" for authentication. All requests to our API have to be authenticated (provide the username and the password given by the platform) and have to be made over HTTPS.
If you only plan on using Pop-in forms, you only need to use your "API Secret Key".
You can find your Secret Key in your account settings once you log into your account.
curl -v -X POST 'https://test-api.centralpay.net/v2/rest/cardToken' \
-H 'Origin: https://example.centralpay.net' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Idempotence-Key: aa9c8f8aff6b9dc349898d0622c3b95f7a89aecf' \
-d 'card[number]=4000000000000002' \
-d 'card[cvc]=123' \
-d 'card[expirationMonth]=12' \
-d 'card[expirationYear]=2022' \
-d 'card[check]=true' \
-d 'merchantPublicKey=d4cd748bb30526f9c9ea7d15d376c88b96743776fc9ba76b24e4da295a136935'
Always use HTTP-Header for serialization formats (user_agent, ...)
The Content-Type (application/x-www-form-urlencoded or multipart/form-data) must be inquire for all the request in the header.
The use of the « Idempotence-Key » field in the HTTP header request allows to authenticate the request that has been sent.
If the same « Idempotence-Key » value is sent again, the request will be considered as already processed and will not be triggered again.
This check allows the merchant to avoid sending duplicate entries.
Note: The key of « Idempotence-Key » is valid for 24 hours.
This key should be built with a sha1 hash of the request parameters (WITHOUT datetime) concatenation like this for this example :
Idempotence-Key = sha1(card[number] + card[cvc] + card[expirationMonth] + card[expirationYear] + card[check] + merchantPublicKey)
curl -v -X POST 'https://test-api.centralpay.net/v2/rest/cardToken' \
-H 'Origin: https://example.centralpay.net' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Idempotence-Key: aa9c8f8aff6b9dc349898d0622c3b95f7a89aecf' \
-d 'card[number]=4000000000000002' \
-d 'card[cvc]=123' \
-d 'card[expirationMonth]=12' \
-d 'card[expirationYear]=2022' \
-d 'card[check]=true' \
-d 'merchantPublicKey=d4cd748bb30526f9c9ea7d15d376c88b96743776fc9ba76b24e4da295a136935'
In each HTTP Response, the « Request-Id » field is written in the HTTP header.
Note: If you have a specific request to be sent via CentralPay REST API, please provide us with this information.
All functions described in the documentation can be executed with a HTML form (See examples provided in the documentation)
In order to test CentralPay services, different tools are available to check the behaviour of the API (example: Firefox Rest Easy plugin).
Searching methods are the same for all objects.
Requests can use either common or specific parameters.
GET https://test-api.centralpay.net/v2/rest/<type_objet>/<id_objet>
OBJ Json <type_objet> type
This function allows you to retrieve objects with the object ID.
<id_objet> UUID (36) |
CentralPay object ID Required: yes Validation: UUID |
GET https://test-api.centralpay.net/v2/rest/<type_objet>/<id_objet>
OBJ Json <type_objet> type
This function allows you to search objects with multiple criteria.
Note: The field « totalCount » displays the total number of objects found from the search request.
Common parameters
before Date ISO 8601 |
Before this date (not included) Required: no Exemple : before=2022-07-01T13:00:00.000Z |
after Date ISO 8601 |
After this date (included) Required: no Exemple : after=2022-07-01T13:00:00.000Z |
limit Integer |
Maximum number of T Required: no Validation: > 0 and <= 100 Note: 10 by default |
page Integer |
Page number Required: no Validation: > 0 Note: 1st page by default |
Webhook are set to receive Event notification when an action took place.
For example creation of new successful Transaction will result in TRANSACTION_CAPTURED event.
Each event belongs to an existing object:
- TRANSACTION_XXXX belongs to the TRANSACTION object.
- REFUND_XXXX belongs to the REFUND object.
- CUSTOMER_XXXX belongs to the CUSTOMER object.
For each event triggered by a change in the objet, you receive an update posted in JSON format.
You can simply create a page on your website and submit the appropriate URL of that page on your account. Then, each time a new event is created we will call your page back with information about the event.
When a new event is created we will POST to each configured webhook URL. Event data are encoded as JSON and are sent in request body.
To acknowledge receipt of a webhook, your endpoint should return a 2xx HTTP status code. Any other information returned in the request headers or request body is ignored. All response codes outside this range, including 3xx codes, will indicate to CentralPay that you did not receive the webhook. This means that a URL redirection or a "Not Modified" response will be treated as a failure. If your endpoint returns another value that a 2xx status code, we will send it again every 5 minutes during 2 hours.
« Event» is a service used in the hook mecanism.
eventId String (36) |
Event identifier Note: UUID Format |
type String |
Event type are always linked to an existing object
Note: For a list of hooks you can see it here |
creationDate String |
Creation date Note: ISO 8601 |
requestId String (36) |
Request Identifier
Note: UUID Format Request-Id HTTP Response header
|
object |
Event Object Note: Depends of event type, for example it will be a JSON "transaction object" if the event type is "TRANSACTION_CAPTURED" |
The Webhook notifications is used to generate "events". These events are addressed to your information system according to the object status with which they interact.
{
"eventId": "e9229c2d-43f3-47aa-a2d4-09b2cd8afeef",
"type": "BANKACCOUNT_ACCEPTED",
"creationDate": "2024-01-05T12:44:06.262837+01:00",
"object": {
"attachments": [],
"bankAccountId": "e6337e4f-6067-42ca-b7f0-9b7bce77c21e",
"bic": "AXABFRPP",
"creationDate": "2024-01-05T12:44:06.044772+01:00",
"currency": "EUR",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"iban": "FR7612548029980000000150086",
"name": "GAUTHIER REF API",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"ownerName": "GAUTHIER REFAPI",
"ownerPostalCode": "37000",
"type": "CUSTOMER_ACCOUNT"
},
"requestId": "0062091d-0377-4a47-bc95-b5717636825f"
}
{
"name": "GAUTHIER REF API",
"description": null,
"ownerName": "GAUTHIER REFAPI",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerDescription": null,
"ownerPostalCode": "37000",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"iban": "FR7612548029980000000150086",
"bic": "AXABFRPP",
"currency": "EUR",
"type": "CUSTOMER_ACCOUNT",
"bankAccountId": "e6337e4f-6067-42ca-b7f0-9b7bce77c21e",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"merchantId": null,
"creationDate": "2024-01-05T12:44:06.044772+01:00",
"attachments": []
}
{
"eventId": "601c64e9-b65e-4369-8f70-5d32ce853073",
"type": "BANKACCOUNT_PENDING",
"creationDate": "2024-01-15T14:26:17.381461+01:00",
"object": {
"attachments": [],
"bankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"bic": "AXABFRPP",
"creationDate": "2024-01-15T14:26:17.189030+01:00",
"currency": "EUR",
"iban": "DE91100000000123456789",
"merchantId": "e962cfc2-1d4f-4f4f-8688-71c38920ca6b",
"name": "GAUTHIER REF API",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"ownerName": "GAUTHIER REFAPI",
"ownerPostalCode": "37000",
"type": "MERCHANT_ACCOUNT"
},
"requestId": "0965a4a6-e353-47ad-b844-40f7feca3ef0"
}
{
"eventId": "e9229c2d-43f3-47aa-a2d4-09b2cd8afeef",
"type": "BANKACCOUNT_ACCEPTED",
"creationDate": "2024-01-05T12:44:06.262837+01:00",
"object": {
"attachments": [],
"bankAccountId": "e6337e4f-6067-42ca-b7f0-9b7bce77c21e",
"bic": "AXABFRPP",
"creationDate": "2024-01-05T12:44:06.044772+01:00",
"currency": "EUR",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"iban": "FR7612548029980000000150086",
"name": "GAUTHIER REF API",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"ownerName": "GAUTHIER REFAPI",
"ownerPostalCode": "37000",
"type": "CUSTOMER_ACCOUNT"
},
"requestId": "0062091d-0377-4a47-bc95-b5717636825f"
}
{
"name": "GAUTHIER REF API",
"description": null,
"ownerName": "GAUTHIER REFAPI",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerDescription": null,
"ownerPostalCode": "37000",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"iban": "FR7612548029980000000150086",
"bic": "AXABFRPP",
"currency": "EUR",
"type": "CUSTOMER_ACCOUNT",
"bankAccountId": "e6337e4f-6067-42ca-b7f0-9b7bce77c21e",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"merchantId": null,
"creationDate": "2024-01-05T12:44:06.044772+01:00",
"attachments": []
}
{
"eventId": "601c64e9-b65e-4369-8f70-5d32ce853073",
"type": "BANKACCOUNT_PENDING",
"creationDate": "2024-01-15T14:26:17.381461+01:00",
"object": {
"attachments": [],
"bankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"bic": "AXABFRPP",
"creationDate": "2024-01-15T14:26:17.189030+01:00",
"currency": "EUR",
"iban": "DE91100000000123456789",
"merchantId": "e962cfc2-1d4f-4f4f-8688-71c38920ca6b",
"name": "GAUTHIER REF API",
"ownerAddress": "142 RUE DE LA REFAPI",
"ownerCity": "TOURS",
"ownerCountry": "FRA",
"ownerName": "GAUTHIER REFAPI",
"ownerPostalCode": "37000",
"type": "MERCHANT_ACCOUNT"
},
"requestId": "0965a4a6-e353-47ad-b844-40f7feca3ef0"
}
{
{
"eventId": "5f037905-d0f2-4171-bc6f-fbab3b3e56e2",
"type": "CARD_UPDATED",
"creationDate": "2024-01-05T12:55:39.727533+01:00",
"object": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"requestId": "296311d9-1f68-4f1f-a9bf-7879afb92c7b",
"objectBeforeUpdate": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
}
}
}
{
{
"eventId": "3973ea45-d327-48d7-b74a-08cbffc821e9",
"type": "CARDTOKEN_CREATED",
"creationDate": "2024-01-05T14:23:41.971425+01:00",
"object": {
"card": {
"additionalData": {},
"cardId": "81e54dd0-512e-47c0-91f3-54e81b74a3ea",
"cardTokenId": "a3d37fd6-2ad7-4e9d-a4a0-b0b1aff44b50",
"cardType": "DEBIT",
"cardholderEmail": "Conner44@yahoo.com",
"cardholderName": "GAUTHIER REFAPI",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:23:41.881571+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2025,
"fingerprint": "edb9f9757c4be415db6616f94a04706a6b92dcd1",
"first6": "403203",
"last4": "2700",
"productType": "CONSUMER",
"region": "EUROPE"
},
"cardTokenId": "a3d37fd6-2ad7-4e9d-a4a0-b0b1aff44b50",
"creationDate": "2024-01-05T14:23:41.881571+01:00",
"endUserIp": "54.86.50.139",
"status": "UNUSED"
},
"requestId": "f55ea9cb-595a-4e5d-b9ba-52198b5b3a16"
}
}
{
{
"eventId": "5f037905-d0f2-4171-bc6f-fbab3b3e56e2",
"type": "CARD_UPDATED",
"creationDate": "2024-01-05T12:55:39.727533+01:00",
"object": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"requestId": "296311d9-1f68-4f1f-a9bf-7879afb92c7b",
"objectBeforeUpdate": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
}
}
}
{
{
"eventId": "3973ea45-d327-48d7-b74a-08cbffc821e9",
"type": "CARDTOKEN_CREATED",
"creationDate": "2024-01-05T14:23:41.971425+01:00",
"object": {
"card": {
"additionalData": {},
"cardId": "81e54dd0-512e-47c0-91f3-54e81b74a3ea",
"cardTokenId": "a3d37fd6-2ad7-4e9d-a4a0-b0b1aff44b50",
"cardType": "DEBIT",
"cardholderEmail": "Conner44@yahoo.com",
"cardholderName": "GAUTHIER REFAPI",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:23:41.881571+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2025,
"fingerprint": "edb9f9757c4be415db6616f94a04706a6b92dcd1",
"first6": "403203",
"last4": "2700",
"productType": "CONSUMER",
"region": "EUROPE"
},
"cardTokenId": "a3d37fd6-2ad7-4e9d-a4a0-b0b1aff44b50",
"creationDate": "2024-01-05T14:23:41.881571+01:00",
"endUserIp": "54.86.50.139",
"status": "UNUSED"
},
"requestId": "f55ea9cb-595a-4e5d-b9ba-52198b5b3a16"
}
}
{
"eventId": "b0ea7273-7421-4f3d-b9b6-27c1f521386b",
"type": "CREDIT_CREATED",
"creationDate": "2024-01-05T14:51:48.090154+01:00",
"object": {
"additionalData": {
"key1": "value1"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardTokenId": "39e38277-d68d-4970-b7ef-2f3e65e3ba1c",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
},
"requestId": "d4cf4f9b-83bc-4877-8d2a-c84a7183c666"
}
{
"eventId": "df668650-b893-462e-aa1a-f232bed383da",
"type": "CREDIT_CANCELED",
"creationDate": "2024-01-05T14:53:29.028715+01:00",
"object": {
"additionalData": {
"key1": "value1",
"test": "test"
},
"amount": 100,
"cancelMovementId": "1555e13a-0344-403a-a01c-6d435c598659",
"cancellationDate": "2024-01-05T14:53:29.015180+01:00",
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "CANCELED",
"transactionTransfers": []
},
"requestId": "dca78a74-22f1-4fd8-a6bb-fc4be4735838"
}
{
"eventId": "b51f11be-c535-49a4-8a70-6241afd75654",
"type": "CREDIT_UPDATED",
"creationDate": "2024-01-05T14:52:49.329773+01:00",
"object": {
"additionalData": {
"key1": "value1",
"test": "test"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
},
"requestId": "300fdb28-2e74-4512-a7e9-f3fa843c8a7c",
"objectBeforeUpdate": {
"additionalData": {
"key1": "value1"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
}
}
{
"eventId": "b0ea7273-7421-4f3d-b9b6-27c1f521386b",
"type": "CREDIT_CREATED",
"creationDate": "2024-01-05T14:51:48.090154+01:00",
"object": {
"additionalData": {
"key1": "value1"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardTokenId": "39e38277-d68d-4970-b7ef-2f3e65e3ba1c",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
},
"requestId": "d4cf4f9b-83bc-4877-8d2a-c84a7183c666"
}
{
"eventId": "df668650-b893-462e-aa1a-f232bed383da",
"type": "CREDIT_CANCELED",
"creationDate": "2024-01-05T14:53:29.028715+01:00",
"object": {
"additionalData": {
"key1": "value1",
"test": "test"
},
"amount": 100,
"cancelMovementId": "1555e13a-0344-403a-a01c-6d435c598659",
"cancellationDate": "2024-01-05T14:53:29.015180+01:00",
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "CANCELED",
"transactionTransfers": []
},
"requestId": "dca78a74-22f1-4fd8-a6bb-fc4be4735838"
}
{
"eventId": "b51f11be-c535-49a4-8a70-6241afd75654",
"type": "CREDIT_UPDATED",
"creationDate": "2024-01-05T14:52:49.329773+01:00",
"object": {
"additionalData": {
"key1": "value1",
"test": "test"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
},
"requestId": "300fdb28-2e74-4512-a7e9-f3fa843c8a7c",
"objectBeforeUpdate": {
"additionalData": {
"key1": "value1"
},
"amount": 100,
"card": {
"additionalData": {},
"cardId": "5ba4a451-e3ba-4555-b6f1-955b1531cbed",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:51:46.753895+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T14:51:47.744817+01:00",
"creditId": "a0184f13-cb58-4db2-9c02-f7ecdaf61909",
"currency": "EUR",
"fee": 0,
"merchantCreditId": "MCID-01",
"movementId": "304a16a4-f3f1-4e14-ab3b-2e9b4cee2f20",
"order": {
"addressLine1": "142 RUE DE LA REFAPI",
"cardCountry": "FRA",
"city": "BRIANNEBURY",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"payoutAmount": 100,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"status": "UNCLEARED",
"transactionTransfers": []
}
}
{
"eventId": "8af1b16e-f78a-42ae-9304-69624a4023fc",
"type": "CUSTOMER_CREATED",
"creationDate": "2024-01-05T12:29:58.808367+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
{
{
"eventId": "94683d87-5919-4d4a-a547-21dbc7e7af1d",
"type": "CUSTOMER_UPDATED",
"creationDate": "2024-01-05T12:36:29.492916+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
},
"requestId": "ca336699-db00-46c6-a797-228c320e351b",
"objectBeforeUpdate": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
}
}
{
"eventId": "7404acb7-6000-4059-9da2-97581df00dc8",
"type": "CUSTOMER_OTP",
"creationDate": "2024-01-26T12:02:55.839650+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [
{
"additionalData": {},
"cardId": "a361cbf0-c334-4422-b4e8-4d96f6b72799",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-26T11:59:38.763535+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "8e9302793aa37b661f9ec57013d105ad72f1bc86",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
}
],
"creationDate": "2024-01-26T11:59:38.569182+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "BEULAH",
"installmentPayments": [],
"language": "fre",
"lastName": "PROSACCO",
"merchantCustomerId": "1706266777-GDU",
"movementId": "9afa479b-0859-4712-a614-2b1f38b81f9c",
"otpExpirationDate": "2024-01-26T12:17:55.731546+01:00",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
},
"requestId": "5329117d-5f7f-471b-a8d7-832627252670",
"objectBeforeUpdate": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [
{
"additionalData": {},
"cardId": "a361cbf0-c334-4422-b4e8-4d96f6b72799",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-26T11:59:38.763535+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "8e9302793aa37b661f9ec57013d105ad72f1bc86",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
}
],
"creationDate": "2024-01-26T11:59:38.569182+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "BEULAH",
"installmentPayments": [],
"language": "fre",
"lastName": "PROSACCO",
"merchantCustomerId": "1706266777-GDU",
"movementId": "9afa479b-0859-4712-a614-2b1f38b81f9c",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
}
{
"eventId": "8af1b16e-f78a-42ae-9304-69624a4023fc",
"type": "CUSTOMER_CREATED",
"creationDate": "2024-01-05T12:29:58.808367+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
{
{
"eventId": "94683d87-5919-4d4a-a547-21dbc7e7af1d",
"type": "CUSTOMER_UPDATED",
"creationDate": "2024-01-05T12:36:29.492916+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
},
"requestId": "ca336699-db00-46c6-a797-228c320e351b",
"objectBeforeUpdate": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [],
"creationDate": "2024-01-05T12:29:58.736339+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "JOCELYN",
"installmentPayments": [],
"language": "fre",
"lastName": "WISOKY",
"merchantCustomerId": "1704454198-GDU",
"movementId": "c5408b8a-43d0-4191-9cb2-f3ec6d610649",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
}
}
{
"eventId": "7404acb7-6000-4059-9da2-97581df00dc8",
"type": "CUSTOMER_OTP",
"creationDate": "2024-01-26T12:02:55.839650+01:00",
"object": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [
{
"additionalData": {},
"cardId": "a361cbf0-c334-4422-b4e8-4d96f6b72799",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-26T11:59:38.763535+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "8e9302793aa37b661f9ec57013d105ad72f1bc86",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
}
],
"creationDate": "2024-01-26T11:59:38.569182+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "BEULAH",
"installmentPayments": [],
"language": "fre",
"lastName": "PROSACCO",
"merchantCustomerId": "1706266777-GDU",
"movementId": "9afa479b-0859-4712-a614-2b1f38b81f9c",
"otpExpirationDate": "2024-01-26T12:17:55.731546+01:00",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
},
"requestId": "5329117d-5f7f-471b-a8d7-832627252670",
"objectBeforeUpdate": {
"additionalData": {},
"bankAccounts": [],
"cardMerchants": [],
"cards": [
{
"additionalData": {},
"cardId": "a361cbf0-c334-4422-b4e8-4d96f6b72799",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-26T11:59:38.763535+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "8e9302793aa37b661f9ec57013d105ad72f1bc86",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
}
],
"creationDate": "2024-01-26T11:59:38.569182+01:00",
"customerId": "bac11130-43c2-4351-9c52-f1f7603282ee",
"email": "gduhamel@centralpay.eu",
"fee": 0,
"firstName": "BEULAH",
"installmentPayments": [],
"language": "fre",
"lastName": "PROSACCO",
"merchantCustomerId": "1706266777-GDU",
"movementId": "9afa479b-0859-4712-a614-2b1f38b81f9c",
"otpExpired": false,
"subscriptions": [],
"totalCharge": 0,
"wallets": []
}
}
{
"depositId": "f63ea558-6e50-4dba-a7e7-eb8676144ea0",
"creationDate": "2020-11-16T10:55:11.163214+01:00",
"description": null,
"amount": 1500000,
"currency": "EUR",
"sepaReference": null,
"movementId": "9612fe9b-e226-4e9f-a0dc-8539a24ba748",
"merchantId": "0055bff7-566c-4688-818c-85caf3601785",
"destinationBankAccountId": "d9952704-5054-47fc-a068-c6865a9d00fd"
}
{
"depositId": "f63ea558-6e50-4dba-a7e7-eb8676144ea0",
"creationDate": "2020-11-16T10:55:11.163214+01:00",
"description": null,
"amount": 1500000,
"currency": "EUR",
"sepaReference": null,
"movementId": "9612fe9b-e226-4e9f-a0dc-8539a24ba748",
"merchantId": "0055bff7-566c-4688-818c-85caf3601785",
"destinationBankAccountId": "d9952704-5054-47fc-a068-c6865a9d00fd"
}
{
"eventId": "91986115-56ed-442a-ace7-2207c7f7cfa1",
"type": "DISPUTE_UPDATED",
"creationDate": "2024-01-05T15:22:33.233092+01:00",
"object": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"description": "ma description",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_WON",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116",
"wonMovementId": "569d7143-7357-4171-91ac-c03721a8ee30"
},
"requestId": "750fdf73-0782-482b-97f6-2dbfb809b563",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_NOTICED",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116"
}
}
{
"eventId": "91986115-56ed-442a-ace7-2207c7f7cfa1",
"type": "DISPUTE_UPDATED",
"creationDate": "2024-01-05T15:22:33.233092+01:00",
"object": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"description": "ma description",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_WON",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116",
"wonMovementId": "569d7143-7357-4171-91ac-c03721a8ee30"
},
"requestId": "750fdf73-0782-482b-97f6-2dbfb809b563",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_NOTICED",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116"
}
}
{
"eventId": "ab0c4d87-336d-4f1d-94ac-8a19e91c90df",
"type": "INSTALLMENTPAYMENT_CREATED",
"creationDate": "2024-01-05T16:47:16.962837+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:47:14.425730+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:47:14.425041+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "d70bceea-1b4b-454f-ae04-3cfa5e877e01",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:47:15.250593+01:00",
"uuid": "8b1b6eb7-c492-4a3f-913e-46c84836b50d"
}
],
"transactions": [
"8b1b6eb7-c492-4a3f-913e-46c84836b50d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:47:14.425434+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "8a2fea18-7ce7-4320-a398-3aec7c7cd7e9",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"nextTransactionAttempt": "2024-02-05T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "ACTIVE"
},
"requestId": "66ec59e5-3f88-4cbd-a01f-b6be126084bf"
}
{
"eventId": "4e1bbe68-906d-4e33-923d-dfee760a2261",
"type": "INSTALLMENTPAYMENT_FAILED",
"creationDate": "2024-01-05T16:34:31.349325+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:29.520817+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:34:29.520525+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "9d1fdd64-a45c-4f30-afb2-36734fdfbf39",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "CANCELED"
},
"requestId": "60a91f69-2549-4652-96ee-25fb58f48f56"
}
{
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"creationDate": "2021-09-09T09:49:00.941254+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"cardId": "06a45250-8e22-41aa-a97a-284c225419a5",
"paymentRequestBreakdownId": "6e5ba89d-d275-4174-8cfd-9418dc6bd303",
"paymentRequestId": "c796df20-258e-4645-90d8-aad70349c547",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"depositStartingDate": null,
"startingDate": "2021-09-09",
"requestedCollectionDate": null,
"merchantInstallmentPaymentId": null,
"endUserIp": "92.154.127.221",
"endUserLanguage": null,
"amount": 300,
"depositAmount": 0,
"feeAmount": 0,
"currency": "EUR",
"description": null,
"intervalUnit": "WEEK",
"intervalCount": 1,
"iterationCount": 3,
"status": "ACTIVE",
"endToEndIdentification": null,
"remittanceInformation": "BCDEB2DEEB6E",
"installments": [
{
"installmentId": "ee6f170c-710a-4a9d-a79f-c163de336530",
"creationDate": "2021-09-09T09:49:00.940625+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 1,
"paid": true,
"type": "INSTALLMENT",
"nextTransactionAttempt": null,
"transactions": [],
"sddTransactions": [
"116adfc1-7996-4bd7-9678-d4a2b1a77762"
]
},
{
"installmentId": "26d5e572-4740-4c30-bbb8-5d2251e13e1d",
"creationDate": "2021-09-09T09:49:00.941206+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-16T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "afe58afd-712d-415f-adf5-70e980c73b57",
"creationDate": "2021-09-09T09:49:00.941224+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-23T08:00+02:00",
"transactions": [],
"sddTransactions": []
}
],
"additionalData": []
}
{
"eventId": "47253f14-814e-4cf8-9582-be869145a80f",
"type": "INSTALLMENTPAYMENT_CANCELED",
"creationDate": "2024-01-05T16:34:31.276257+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:29.520817+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:34:29.520525+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "9d1fdd64-a45c-4f30-afb2-36734fdfbf39",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "CANCELED"
},
"requestId": "1bac71b6-6d40-4618-b772-95c926cbeab2"
}
{
"eventId": "17198557-e18a-4e75-a88f-d23ea841a641",
"type": "INSTALLMENTPAYMENT_PAID",
"creationDate": "2024-01-30T12:19:22.324713+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "403203",
"last4": "2700",
"uuid": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82"
},
"cardId": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:40:35.818249+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818185+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "c3c2eb3c-9935-4eb1-a9bd-42f62f1c035c",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:40:36.418127+01:00",
"uuid": "7f642ab2-5c15-4420-b85a-a97cb819844d"
}
],
"transactions": [
"7f642ab2-5c15-4420-b85a-a97cb819844d"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818207+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "6eaf48a5-d0df-40d2-bd62-a297444d37d2",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-30T12:19:20.941639+01:00",
"uuid": "ea71af48-6048-46e0-8703-7cb3e0a24b65"
}
],
"transactions": [
"ea71af48-6048-46e0-8703-7cb3e0a24b65"
],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "b665743f-6671-4749-9727-f801c0d9915a",
"paymentRequestId": "3192c6e1-89e6-4d5a-9d96-3208b37f5c3f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2023-12-15",
"status": "PAID"
},
"requestId": "7ef61f64-e4e9-4021-8d29-c4b449b762f8"
}
{
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"creationDate": "2021-09-03T10:38:16.811541+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"cardId": "d3143e10-9660-48bb-b6a6-b2e1100ecf6f",
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"mandateId": null,
"depositStartingDate": "2021-09-03",
"startingDate": "2021-09-17",
"requestedCollectionDate": null,
"merchantInstallmentPaymentId": "testInstall",
"endUserIp": "91.229.230.41",
"endUserLanguage": "fre",
"amount": 550000,
"depositAmount": 50000,
"feeAmount": 0,
"currency": "EUR",
"description": null,
"intervalUnit": "WEEK",
"intervalCount": 2,
"iterationCount": 10,
"status": "UNPAID",
"endToEndIdentification": null,
"remittanceInformation": null,
"installments": [
{
"installmentId": "1a123952-cc30-47c2-8f2e-1b6182fd25a6",
"creationDate": "2021-09-03T10:38:16.809510+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 1,
"paid": false,
"type": "DEPOSIT",
"nextTransactionAttempt": "2021-09-03T08:00+02:00",
"transactions": [
"91c604d8-a63c-483c-87aa-f03181a634b5"
],
"sddTransactions": []
},
{
"installmentId": "28754849-1b22-491b-bc15-7f38d0c9a988",
"creationDate": "2021-09-03T10:38:16.810529+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-17T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "666f0320-7766-464e-949b-e7ce9997a173",
"creationDate": "2021-09-03T10:38:16.810564+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-01T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "1b88ddcc-5c9e-4b43-a3cc-6792d9162ea4",
"creationDate": "2021-09-03T10:38:16.810582+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-15T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "1f25ec3c-d846-4f9c-80e9-c5b86adef8eb",
"creationDate": "2021-09-03T10:38:16.810595+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-29T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "9d206cee-565d-4181-9987-d65f82a0ffaa",
"creationDate": "2021-09-03T10:38:16.810609+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-11-12T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "4fecfcf0-7b4a-4241-a716-a56bc840bd20",
"creationDate": "2021-09-03T10:38:16.810621+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-11-26T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "703d1c4f-f1a6-4e30-9a8c-83cd9916f42e",
"creationDate": "2021-09-03T10:38:16.810634+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-12-10T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "4c98d99f-f321-43bf-a37e-801a85d03200",
"creationDate": "2021-09-03T10:38:16.810646+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-12-24T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "893c6120-7f51-4616-9f18-7880c76747fb",
"creationDate": "2021-09-03T10:38:16.810658+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2022-01-07T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "8bf4e146-8737-4260-84f5-1a95653d1e24",
"creationDate": "2021-09-03T10:38:16.810671+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2022-01-21T07:00+01:00",
"transactions": [],
"sddTransactions": []
}
],
"additionalData": []
}
{
"eventId": "a4bb53ba-c913-4077-bf75-5b3d91c0f026",
"type": "INSTALLMENT_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-05T16:47:16.914769+01:00",
"object": {
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:47:14.425041+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "d70bceea-1b4b-454f-ae04-3cfa5e877e01",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:47:15.250593+01:00",
"uuid": "8b1b6eb7-c492-4a3f-913e-46c84836b50d"
}
],
"transactions": [
"8b1b6eb7-c492-4a3f-913e-46c84836b50d"
],
"type": "INSTALLMENT"
},
"requestId": "05809a07-9e49-44be-91c2-4ca357f2a7cc"
}
{
"eventId": "2518ae0a-7e88-4458-86cb-3ef2a71f07bf",
"type": "INSTALLMENT_TRANSACTION_FAILED",
"creationDate": "2024-01-05T16:34:31.034977+01:00",
"object": {
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"nextTransactionAttempt": "2024-01-08T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
"requestId": "89cb89a8-618a-46f6-8971-c8f84a57f61e"
}
{
"eventId": "ab0c4d87-336d-4f1d-94ac-8a19e91c90df",
"type": "INSTALLMENTPAYMENT_CREATED",
"creationDate": "2024-01-05T16:47:16.962837+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:47:14.425730+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:47:14.425041+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "d70bceea-1b4b-454f-ae04-3cfa5e877e01",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:47:15.250593+01:00",
"uuid": "8b1b6eb7-c492-4a3f-913e-46c84836b50d"
}
],
"transactions": [
"8b1b6eb7-c492-4a3f-913e-46c84836b50d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:47:14.425434+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "8a2fea18-7ce7-4320-a398-3aec7c7cd7e9",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"nextTransactionAttempt": "2024-02-05T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "ACTIVE"
},
"requestId": "66ec59e5-3f88-4cbd-a01f-b6be126084bf"
}
{
"eventId": "4e1bbe68-906d-4e33-923d-dfee760a2261",
"type": "INSTALLMENTPAYMENT_FAILED",
"creationDate": "2024-01-05T16:34:31.349325+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:29.520817+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:34:29.520525+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "9d1fdd64-a45c-4f30-afb2-36734fdfbf39",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "CANCELED"
},
"requestId": "60a91f69-2549-4652-96ee-25fb58f48f56"
}
{
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"creationDate": "2021-09-09T09:49:00.941254+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"cardId": "06a45250-8e22-41aa-a97a-284c225419a5",
"paymentRequestBreakdownId": "6e5ba89d-d275-4174-8cfd-9418dc6bd303",
"paymentRequestId": "c796df20-258e-4645-90d8-aad70349c547",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"depositStartingDate": null,
"startingDate": "2021-09-09",
"requestedCollectionDate": null,
"merchantInstallmentPaymentId": null,
"endUserIp": "92.154.127.221",
"endUserLanguage": null,
"amount": 300,
"depositAmount": 0,
"feeAmount": 0,
"currency": "EUR",
"description": null,
"intervalUnit": "WEEK",
"intervalCount": 1,
"iterationCount": 3,
"status": "ACTIVE",
"endToEndIdentification": null,
"remittanceInformation": "BCDEB2DEEB6E",
"installments": [
{
"installmentId": "ee6f170c-710a-4a9d-a79f-c163de336530",
"creationDate": "2021-09-09T09:49:00.940625+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 1,
"paid": true,
"type": "INSTALLMENT",
"nextTransactionAttempt": null,
"transactions": [],
"sddTransactions": [
"116adfc1-7996-4bd7-9678-d4a2b1a77762"
]
},
{
"installmentId": "26d5e572-4740-4c30-bbb8-5d2251e13e1d",
"creationDate": "2021-09-09T09:49:00.941206+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-16T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "afe58afd-712d-415f-adf5-70e980c73b57",
"creationDate": "2021-09-09T09:49:00.941224+02:00",
"installmentPaymentId": "2351a31a-3c84-4681-8a83-cd5f260d78ab",
"customerId": "3036e768-071e-4119-abd8-57d50581c371",
"mandateId": "f65ea8ce-5171-4c1e-8b8f-69654e0acf4e",
"amount": 100,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-23T08:00+02:00",
"transactions": [],
"sddTransactions": []
}
],
"additionalData": []
}
{
"eventId": "47253f14-814e-4cf8-9582-be869145a80f",
"type": "INSTALLMENTPAYMENT_CANCELED",
"creationDate": "2024-01-05T16:34:31.276257+01:00",
"object": {
"additionalData": {
"Key1": "val1"
},
"amount": 1000,
"card": {
"commercialBrand": "MASTERCARD",
"first6": "532509",
"last4": "0008",
"uuid": "4680d102-96b0-4fba-b00c-3375ee610fc7"
},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:29.520817+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"depositAmount": 0,
"endUserIp": "245.100.1.15",
"feeAmount": 0,
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"installments": [
{
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
{
"amount": 500,
"attemptCount": 0,
"creationDate": "2024-01-05T16:34:29.520525+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "9d1fdd64-a45c-4f30-afb2-36734fdfbf39",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"merchantInstallmentPaymentId": "MIP_001",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-05",
"status": "CANCELED"
},
"requestId": "1bac71b6-6d40-4618-b772-95c926cbeab2"
}
{
"eventId": "17198557-e18a-4e75-a88f-d23ea841a641",
"type": "INSTALLMENTPAYMENT_PAID",
"creationDate": "2024-01-30T12:19:22.324713+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "403203",
"last4": "2700",
"uuid": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82"
},
"cardId": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:40:35.818249+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818185+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "c3c2eb3c-9935-4eb1-a9bd-42f62f1c035c",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:40:36.418127+01:00",
"uuid": "7f642ab2-5c15-4420-b85a-a97cb819844d"
}
],
"transactions": [
"7f642ab2-5c15-4420-b85a-a97cb819844d"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818207+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "6eaf48a5-d0df-40d2-bd62-a297444d37d2",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-30T12:19:20.941639+01:00",
"uuid": "ea71af48-6048-46e0-8703-7cb3e0a24b65"
}
],
"transactions": [
"ea71af48-6048-46e0-8703-7cb3e0a24b65"
],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "b665743f-6671-4749-9727-f801c0d9915a",
"paymentRequestId": "3192c6e1-89e6-4d5a-9d96-3208b37f5c3f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2023-12-15",
"status": "PAID"
},
"requestId": "7ef61f64-e4e9-4021-8d29-c4b449b762f8"
}
{
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"creationDate": "2021-09-03T10:38:16.811541+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"cardId": "d3143e10-9660-48bb-b6a6-b2e1100ecf6f",
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"mandateId": null,
"depositStartingDate": "2021-09-03",
"startingDate": "2021-09-17",
"requestedCollectionDate": null,
"merchantInstallmentPaymentId": "testInstall",
"endUserIp": "91.229.230.41",
"endUserLanguage": "fre",
"amount": 550000,
"depositAmount": 50000,
"feeAmount": 0,
"currency": "EUR",
"description": null,
"intervalUnit": "WEEK",
"intervalCount": 2,
"iterationCount": 10,
"status": "UNPAID",
"endToEndIdentification": null,
"remittanceInformation": null,
"installments": [
{
"installmentId": "1a123952-cc30-47c2-8f2e-1b6182fd25a6",
"creationDate": "2021-09-03T10:38:16.809510+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 1,
"paid": false,
"type": "DEPOSIT",
"nextTransactionAttempt": "2021-09-03T08:00+02:00",
"transactions": [
"91c604d8-a63c-483c-87aa-f03181a634b5"
],
"sddTransactions": []
},
{
"installmentId": "28754849-1b22-491b-bc15-7f38d0c9a988",
"creationDate": "2021-09-03T10:38:16.810529+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-09-17T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "666f0320-7766-464e-949b-e7ce9997a173",
"creationDate": "2021-09-03T10:38:16.810564+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-01T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "1b88ddcc-5c9e-4b43-a3cc-6792d9162ea4",
"creationDate": "2021-09-03T10:38:16.810582+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-15T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "1f25ec3c-d846-4f9c-80e9-c5b86adef8eb",
"creationDate": "2021-09-03T10:38:16.810595+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-10-29T08:00+02:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "9d206cee-565d-4181-9987-d65f82a0ffaa",
"creationDate": "2021-09-03T10:38:16.810609+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-11-12T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "4fecfcf0-7b4a-4241-a716-a56bc840bd20",
"creationDate": "2021-09-03T10:38:16.810621+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-11-26T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "703d1c4f-f1a6-4e30-9a8c-83cd9916f42e",
"creationDate": "2021-09-03T10:38:16.810634+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-12-10T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "4c98d99f-f321-43bf-a37e-801a85d03200",
"creationDate": "2021-09-03T10:38:16.810646+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2021-12-24T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "893c6120-7f51-4616-9f18-7880c76747fb",
"creationDate": "2021-09-03T10:38:16.810658+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2022-01-07T07:00+01:00",
"transactions": [],
"sddTransactions": []
},
{
"installmentId": "8bf4e146-8737-4260-84f5-1a95653d1e24",
"creationDate": "2021-09-03T10:38:16.810671+02:00",
"installmentPaymentId": "67e18dd5-f990-425f-9234-908ec3e17b4a",
"customerId": "5d6f77d7-2a77-4ec0-9789-aff4a65751a5",
"mandateId": null,
"amount": 50000,
"currency": "EUR",
"attemptCount": 0,
"paid": false,
"type": "INSTALLMENT",
"nextTransactionAttempt": "2022-01-21T07:00+01:00",
"transactions": [],
"sddTransactions": []
}
],
"additionalData": []
}
{
"eventId": "a4bb53ba-c913-4077-bf75-5b3d91c0f026",
"type": "INSTALLMENT_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-05T16:47:16.914769+01:00",
"object": {
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:47:14.425041+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "d70bceea-1b4b-454f-ae04-3cfa5e877e01",
"installmentPaymentId": "1da9892e-d71c-40a9-8637-c259d3076582",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:47:15.250593+01:00",
"uuid": "8b1b6eb7-c492-4a3f-913e-46c84836b50d"
}
],
"transactions": [
"8b1b6eb7-c492-4a3f-913e-46c84836b50d"
],
"type": "INSTALLMENT"
},
"requestId": "05809a07-9e49-44be-91c2-4ca357f2a7cc"
}
{
"eventId": "2518ae0a-7e88-4458-86cb-3ef2a71f07bf",
"type": "INSTALLMENT_TRANSACTION_FAILED",
"creationDate": "2024-01-05T16:34:31.034977+01:00",
"object": {
"amount": 500,
"attemptCount": 1,
"creationDate": "2024-01-05T16:34:29.520151+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"installmentId": "6fe13fbd-10d6-406d-93af-31f5d682db99",
"installmentPaymentId": "0453a075-211f-4d0a-8947-e05cd6bd33fc",
"nextTransactionAttempt": "2024-01-08T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"uuid": "f061fa00-8494-4eca-b9d1-f54d36125d7d"
}
],
"transactions": [
"f061fa00-8494-4eca-b9d1-f54d36125d7d"
],
"type": "INSTALLMENT"
},
"requestId": "89cb89a8-618a-46f6-8971-c8f84a57f61e"
}
{
"eventId": "8eb9f549-325d-4451-8e98-d90f1bf5635a",
"type": "ONBOARDING_ENROLLMENT_CREATED",
"creationDate": "2024-01-10T09:14:51.488392+01:00",
"object": {
"workflow": {
"uuid": "b1161973-7ec2-4dd0-a23e-abb788b68844",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "e08b0baf-c947-4b82-bd69-f98a2a67c511",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"risk_points": null,
"created_at": "2024-01-10T09:14:51",
"last_updated_at": null,
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"uuid": "805a41ad-bd70-4841-a0d4-91f9082860dd",
"workflow": {
"uuid": "24d6e160-5f16-4e60-81a2-f5b6942ce629",
"status": "ON_GOING",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
}
],
"uuid": "adf915df-d11f-4862-b76d-1c1e4e06994d",
"name": "identityInfos",
"state": "TODO",
"category": "identity",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "78daf0f6-4659-461f-a817-72c4b233cd70",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Artisans (plumber, electricians, ...)"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false
},
"requestId": "b59cf6d0-4180-4a0e-b26d-8d2e34759c46"
}
{
"eventId": "e4e42e20-1819-49d3-af96-9a7ecb978a5d",
"type": "ONBOARDING_ENROLLMENT_STATUS_UPDATED",
"creationDate": "2024-01-10T09:16:02.927117+01:00",
"object": {
"workflow": {
"uuid": "b1161973-7ec2-4dd0-a23e-abb788b68844",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "e08b0baf-c947-4b82-bd69-f98a2a67c511",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"risk_points": null,
"created_at": "2024-01-10T09:14:51",
"last_updated_at": "2024-01-10T09:16:02",
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"uuid": "805a41ad-bd70-4841-a0d4-91f9082860dd",
"workflow": {
"uuid": "24d6e160-5f16-4e60-81a2-f5b6942ce629",
"status": "ACCEPTED",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "08942994-180a-469e-9139-fa2fa09375ec",
"documents": [
{
"file_check": null
}
],
"type": "PASSPORT",
"proof_of_identity_document": null,
"expiry_date": null,
"document_number": null,
"mrz_line1": null,
"mrz_line2": null,
"issuing_country": null,
"element-type": "identity-document"
},
{
"status": "COMPLETED",
"uuid": "01994746-c538-4387-a07d-af53b40e797d",
"name_line1": "rue du bois",
"name_line2": null,
"name_line3": null,
"name_line4": null,
"locality": "Tours",
"postal_code": "37000",
"country": "FRA",
"element-type": "address"
}
],
"uuid": "adf915df-d11f-4862-b76d-1c1e4e06994d",
"name": "identityInfos",
"state": "OK",
"category": "identity",
"created_at": "2024-01-10T09:14:51"
},
{
"step_elements": [],
"uuid": null,
"name": "finished",
"state": "OK",
"category": null,
"created_at": null
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "78daf0f6-4659-461f-a817-72c4b233cd70",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Hotels & holiday rentals"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false
},
"requestId": "e2324dd3-59e4-44e2-a0d7-fe7df9c4a690"
}
{
"uuid": "1ad91002-fcad-4056-a41f-82ab63687af2",
"additional_documents": {
"uuid": "eb0b568a-a619-4d80-b35a-846144ef1925",
"created_at": "2021-03-23T17:30:35+01:00",
"type": "AUDITED_FINANCIAL_REPORT",
"additional_documents_history": [
{
"uuid": "1a330b31-9150-45cd-9fc3-bb3bed751b7b",
"created_at": "2021-03-23T17:30:35+01:00",
"status": "NOT_UPLOADED",
"comment": "en couleur de moins de 3 mois",
"additional_document_history_status": [
{
"changed_at": "2021-03-23T17:30:35+01:00",
"value": "NOT_UPLOADED"
}
]
}
]
}
}
{
"eventId": "69d19eb6-5b4d-4658-8149-526d779328a4",
"type": "ONBOARDING_PAYMENT_ACCOUNT_CREATED",
"creationDate": "2024-01-10T09:17:04.318216+01:00",
"object": {
"merchantEnrollmentId": "c2e03650-2427-4c25-aa31-016c63f7261b",
"merchantEnrollmentCustomReference": null,
"merchantEnrollmentType": "BASIC",
"merchantId": "cac4f315-4dbf-45da-bb3c-4c9b64fe81c1",
"merchantName": "Carmelo Littel",
"merchantWalletId": "9a8fc3a1-bece-4ef2-a92a-d6341f8799e0",
"creationDate": "2024-01-10T09:17:03+0100",
"merchantBlockConfigurationStatus": "NONE"
},
"requestId": "abd91f96-78c3-4277-8eea-b2a4e323efd3"
}
{
"eventId": "a427366c-eb0b-4d68-9d81-22f406162024",
"type": "ONBOARDING_PEP_SANCTION_SEARCH_RESULT",
"creationDate": "2024-01-10T09:16:09.771127+01:00",
"object": {
"enrollment_uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"enrollment_url": "https://test-backoffice.centralpay.net/admin/onboarding/c2e03650-2427-4c25-aa31-016c63f7261b/show",
"profile": {
"pep_validation": {
"created_at": "2024-01-10 09:16:04",
"status": "ACCEPTED",
"reference": "1704874567-MMSug5fh",
"client_ref": "225cab33-3c8d-4bc7-b6d8-7f7d7448b49d",
"review_url": "https://api.complyadvantage.com1704874567-MMSug5fh"
},
"sanction_validation": {
"created_at": "2024-01-10 09:16:04",
"status": "ACCEPTED",
"reference": "1704874567-MMSug5fh",
"client_ref": "225cab33-3c8d-4bc7-b6d8-7f7d7448b49d",
"review_url": "https://api.complyadvantage.com1704874567-MMSug5fh"
}
}
},
"requestId": "d995a82d-ff33-4c20-af58-2546f3ef4c09"
}
{
"eventId": "4fa7e538-9e45-4ba2-8c22-25bdb931ff19",
"type": "ONBOARDING_ENROLLMENT_WORKFLOW_RESET",
"creationDate": "2024-01-25T12:24:32.450115+01:00",
"object": {
"workflow": {
"uuid": "cc91fb6c-55c0-48b3-82de-549d1061edf9",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "49ff33c2-d4e8-4eec-ad1c-43ebe822706b",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-25T12:24:32"
},
{
"step_elements": [],
"uuid": "49ff33c2-d4e8-4eec-ad1c-43ebe822706b",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-25T12:24:32"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "b7fa53f5-1cc7-4524-8a41-364b6e85f6b4",
"risk_points": null,
"created_at": "2024-01-25T12:21:11",
"last_updated_at": null,
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a404d8cf-d4f5-412a-b0a2-fc8843fbe7ed",
"value": null,
"element-type": "birthname"
},
"uuid": "c8e69bcf-cd2a-4dd5-85a6-252ba8ef2fa2",
"workflow": {
"uuid": "512c94e7-f470-446f-b030-65729b681d41",
"status": "ON_GOING",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "e3832733-a07c-4f29-999a-945854cae097",
"value": "Alejandra",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "6f2bf419-ada4-4967-b6ff-4c02dee109f4",
"value": "Walter",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "a691c5d5-a62a-4cd9-97b1-b68c1e612d0f",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "e077ba27-5cfe-4a5b-ada9-cbf043d50cb5",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "faec075e-d17c-4c7d-ad2d-8e9ee573f840",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "d052f4da-c670-4075-8d29-d55fdae732a5",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "96693dd5-4463-402a-aea7-e034b414825a",
"value": "tessie_ebert@gmail.com",
"element-type": "email"
}
],
"uuid": "b77d7bf7-ab6f-4cb0-ad18-22ac66a50a3b",
"name": "identityInfos",
"state": "TODO",
"category": "identity",
"created_at": "2024-01-25T12:21:11"
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "e3832733-a07c-4f29-999a-945854cae097",
"value": "Alejandra",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "6f2bf419-ada4-4967-b6ff-4c02dee109f4",
"value": "Walter",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a404d8cf-d4f5-412a-b0a2-fc8843fbe7ed",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "96693dd5-4463-402a-aea7-e034b414825a",
"value": "tessie_ebert@gmail.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "232259eb-02cf-48af-9693-d678fecd9dc1",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "a691c5d5-a62a-4cd9-97b1-b68c1e612d0f",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "faec075e-d17c-4c7d-ad2d-8e9ee573f840",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Artisans (plumber, electricians, ...)"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false,
"auto_updated_data": false
},
"requestId": "3ca496d0-bd87-4457-8460-fc1e502d4962"
}
{
"eventId": "abcb1231-4c88-40f3-8707-d02fd3208bf8",
"type": "ONBOARDING_PAYMENT_ACCOUNT_UPDATED",
"creationDate": "2024-06-20T10:59:35.365601+02:00",
"object": {
"merchantEnrollmentId": "ed66501f-22eb-4240-8352-2c56e996a7d1",
"merchantEnrollmentCustomReference": "referencetest",
"merchantEnrollmentType": "BASIC",
"merchantId": "3e8c0781-68b1-474d-88e6-99773a715c49",
"merchantName": "Corben Dallas",
"merchantWalletId": "554e21dc-a59d-4f7a-a2a7-451865ece7c9",
"creationDate": "2020-12-01T15:10:28+0100",
"merchantBlockConfigurationStatus": "NONE"
},
"requestId": "a0621556-0a51-451c-b111-28bd1b55b687"
}
ONBOARDING_ENROLLMENT_CREATED
When the onboarding request has been accept. You will receive an enrollementId associated to you custom reference.
ONBOARDING_ENROLLMENT_STATUS_UPDATED
An ongoing onboarding has been updated.
ONBOARDING_ENROLLMENT_INVALID_DOCUMENTS
Some documents are regarded as invalid by the Centralpay conformity
ONBOARDING_ENROLLMENT_VALID_DOCUMENTS
Some documents are regarded as valid by the Centralpay conformity
ONBOARDING_PAYMENT_ACCOUNT_CREATED
The account has been created. You receive those elements
merchantBlockConfigurationStatus :
- NONE : Not blocked
- IN : Blocked in PAYIN
- OUT : Blocked in PAYOUT
- IN_OUT : Blocked in PAYIN and PAYOUT
merchantEnrollmentType :
- STANDARD : Direct merchant
- BASIC : Indirect merchant or participating merchant
ONBOARDING_PAYMENT_ACCOUNT_UPDATED
The account has been update. You receive those elements
ONBOARDING_ADDITIONAL_DOCUMENT_REQUESTED
Additionnal documents or information have been request on one ongoing onboarding.
ONBOARDING_ADDITIONAL_DOCUMENT_UPDATED
Additionnal documents or information have been provided by the account holder in one ongoing onboarding.
ONBOARDING_ENROLLMENT_WORKFLOW_RESET
The workflow has returned to it's initial state
ONBOARDING_PEP_SANCTION_SEARCH_RESULT
The PEP Sanction search has return result, you receive those elements
ENROLLMENT_CREATED
When an enrollement is created
{
"eventId": "8eb9f549-325d-4451-8e98-d90f1bf5635a",
"type": "ONBOARDING_ENROLLMENT_CREATED",
"creationDate": "2024-01-10T09:14:51.488392+01:00",
"object": {
"workflow": {
"uuid": "b1161973-7ec2-4dd0-a23e-abb788b68844",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "e08b0baf-c947-4b82-bd69-f98a2a67c511",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"risk_points": null,
"created_at": "2024-01-10T09:14:51",
"last_updated_at": null,
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"uuid": "805a41ad-bd70-4841-a0d4-91f9082860dd",
"workflow": {
"uuid": "24d6e160-5f16-4e60-81a2-f5b6942ce629",
"status": "ON_GOING",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
}
],
"uuid": "adf915df-d11f-4862-b76d-1c1e4e06994d",
"name": "identityInfos",
"state": "TODO",
"category": "identity",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "78daf0f6-4659-461f-a817-72c4b233cd70",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Artisans (plumber, electricians, ...)"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false
},
"requestId": "b59cf6d0-4180-4a0e-b26d-8d2e34759c46"
}
{
"eventId": "e4e42e20-1819-49d3-af96-9a7ecb978a5d",
"type": "ONBOARDING_ENROLLMENT_STATUS_UPDATED",
"creationDate": "2024-01-10T09:16:02.927117+01:00",
"object": {
"workflow": {
"uuid": "b1161973-7ec2-4dd0-a23e-abb788b68844",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "e08b0baf-c947-4b82-bd69-f98a2a67c511",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-10T09:14:51"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"risk_points": null,
"created_at": "2024-01-10T09:14:51",
"last_updated_at": "2024-01-10T09:16:02",
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"uuid": "805a41ad-bd70-4841-a0d4-91f9082860dd",
"workflow": {
"uuid": "24d6e160-5f16-4e60-81a2-f5b6942ce629",
"status": "ACCEPTED",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
{
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "37ec9115-e88f-4bd7-a36e-77c4204f5058",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "898c972f-be5f-4209-b9a6-4b06ed8e17f9",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "08942994-180a-469e-9139-fa2fa09375ec",
"documents": [
{
"file_check": null
}
],
"type": "PASSPORT",
"proof_of_identity_document": null,
"expiry_date": null,
"document_number": null,
"mrz_line1": null,
"mrz_line2": null,
"issuing_country": null,
"element-type": "identity-document"
},
{
"status": "COMPLETED",
"uuid": "01994746-c538-4387-a07d-af53b40e797d",
"name_line1": "rue du bois",
"name_line2": null,
"name_line3": null,
"name_line4": null,
"locality": "Tours",
"postal_code": "37000",
"country": "FRA",
"element-type": "address"
}
],
"uuid": "adf915df-d11f-4862-b76d-1c1e4e06994d",
"name": "identityInfos",
"state": "OK",
"category": "identity",
"created_at": "2024-01-10T09:14:51"
},
{
"step_elements": [],
"uuid": null,
"name": "finished",
"state": "OK",
"category": null,
"created_at": null
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "76fa0a86-7b3e-44e5-aa8a-f6ccd06d3df9",
"value": "Carmelo",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "f01070cd-01c8-4e22-929a-7988c2c0dac0",
"value": "Littel",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a60a7930-38ce-4585-bc15-bad4e4d8c9fa",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "41449fa2-079e-4f1e-81b2-a4fed78c1d5b",
"value": "verna11@yahoo.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "78daf0f6-4659-461f-a817-72c4b233cd70",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "8899cbdc-f074-4730-9f9e-44a144517a39",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "9ce4c8fb-3c39-4e42-bc81-45a78760d8ff",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Hotels & holiday rentals"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false
},
"requestId": "e2324dd3-59e4-44e2-a0d7-fe7df9c4a690"
}
{
"uuid": "1ad91002-fcad-4056-a41f-82ab63687af2",
"additional_documents": {
"uuid": "eb0b568a-a619-4d80-b35a-846144ef1925",
"created_at": "2021-03-23T17:30:35+01:00",
"type": "AUDITED_FINANCIAL_REPORT",
"additional_documents_history": [
{
"uuid": "1a330b31-9150-45cd-9fc3-bb3bed751b7b",
"created_at": "2021-03-23T17:30:35+01:00",
"status": "NOT_UPLOADED",
"comment": "en couleur de moins de 3 mois",
"additional_document_history_status": [
{
"changed_at": "2021-03-23T17:30:35+01:00",
"value": "NOT_UPLOADED"
}
]
}
]
}
}
{
"eventId": "69d19eb6-5b4d-4658-8149-526d779328a4",
"type": "ONBOARDING_PAYMENT_ACCOUNT_CREATED",
"creationDate": "2024-01-10T09:17:04.318216+01:00",
"object": {
"merchantEnrollmentId": "c2e03650-2427-4c25-aa31-016c63f7261b",
"merchantEnrollmentCustomReference": null,
"merchantEnrollmentType": "BASIC",
"merchantId": "cac4f315-4dbf-45da-bb3c-4c9b64fe81c1",
"merchantName": "Carmelo Littel",
"merchantWalletId": "9a8fc3a1-bece-4ef2-a92a-d6341f8799e0",
"creationDate": "2024-01-10T09:17:03+0100",
"merchantBlockConfigurationStatus": "NONE"
},
"requestId": "abd91f96-78c3-4277-8eea-b2a4e323efd3"
}
{
"eventId": "a427366c-eb0b-4d68-9d81-22f406162024",
"type": "ONBOARDING_PEP_SANCTION_SEARCH_RESULT",
"creationDate": "2024-01-10T09:16:09.771127+01:00",
"object": {
"enrollment_uuid": "c2e03650-2427-4c25-aa31-016c63f7261b",
"enrollment_url": "https://test-backoffice.centralpay.net/admin/onboarding/c2e03650-2427-4c25-aa31-016c63f7261b/show",
"profile": {
"pep_validation": {
"created_at": "2024-01-10 09:16:04",
"status": "ACCEPTED",
"reference": "1704874567-MMSug5fh",
"client_ref": "225cab33-3c8d-4bc7-b6d8-7f7d7448b49d",
"review_url": "https://api.complyadvantage.com1704874567-MMSug5fh"
},
"sanction_validation": {
"created_at": "2024-01-10 09:16:04",
"status": "ACCEPTED",
"reference": "1704874567-MMSug5fh",
"client_ref": "225cab33-3c8d-4bc7-b6d8-7f7d7448b49d",
"review_url": "https://api.complyadvantage.com1704874567-MMSug5fh"
}
}
},
"requestId": "d995a82d-ff33-4c20-af58-2546f3ef4c09"
}
{
"eventId": "4fa7e538-9e45-4ba2-8c22-25bdb931ff19",
"type": "ONBOARDING_ENROLLMENT_WORKFLOW_RESET",
"creationDate": "2024-01-25T12:24:32.450115+01:00",
"object": {
"workflow": {
"uuid": "cc91fb6c-55c0-48b3-82de-549d1061edf9",
"status": "ON_GOING",
"activities": [
{
"step_elements": [],
"uuid": "49ff33c2-d4e8-4eec-ad1c-43ebe822706b",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-25T12:24:32"
},
{
"step_elements": [],
"uuid": "49ff33c2-d4e8-4eec-ad1c-43ebe822706b",
"name": "ContractValiA",
"state": "TODO",
"category": "validation",
"created_at": "2024-01-25T12:24:32"
}
],
"additional_documents": []
},
"identity_badge": null,
"representatives_list": null,
"inactive_representatives_list": [],
"infogreffe_identity": null,
"language": "fr",
"risk_score": {
"activity": 2,
"activity_age": null,
"turnover": 1,
"bank_account": 0,
"total": null
},
"additional_document_need_upload": false,
"uuid": "b7fa53f5-1cc7-4524-8a41-364b6e85f6b4",
"risk_points": null,
"created_at": "2024-01-25T12:21:11",
"last_updated_at": null,
"turnover_is_fixed": false,
"workflow_mode": "SEQUENTIAL",
"risk_level": "LOW",
"type": "INDIVIDUAL",
"is_canceled": false,
"enrollment_account": null,
"profile": {
"birthname": {
"status": "ON_GOING",
"uuid": "a404d8cf-d4f5-412a-b0a2-fc8843fbe7ed",
"value": null,
"element-type": "birthname"
},
"uuid": "c8e69bcf-cd2a-4dd5-85a6-252ba8ef2fa2",
"workflow": {
"uuid": "512c94e7-f470-446f-b030-65729b681d41",
"status": "ON_GOING",
"activities": [
{
"step_elements": [
{
"status": "COMPLETED",
"uuid": "e3832733-a07c-4f29-999a-945854cae097",
"value": "Alejandra",
"element-type": "firstname"
},
{
"status": "COMPLETED",
"uuid": "6f2bf419-ada4-4967-b6ff-4c02dee109f4",
"value": "Walter",
"element-type": "lastname"
},
{
"status": "COMPLETED",
"uuid": "a691c5d5-a62a-4cd9-97b1-b68c1e612d0f",
"value": "+3300000000",
"element-type": "phone"
},
{
"status": "COMPLETED",
"uuid": "e077ba27-5cfe-4a5b-ada9-cbf043d50cb5",
"value": "Tours",
"element-type": "place-of-birth"
},
{
"status": "COMPLETED",
"uuid": "faec075e-d17c-4c7d-ad2d-8e9ee573f840",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
{
"status": "COMPLETED",
"uuid": "d052f4da-c670-4075-8d29-d55fdae732a5",
"country": "FRA",
"element-type": "country-of-birth"
},
{
"status": "COMPLETED",
"uuid": "96693dd5-4463-402a-aea7-e034b414825a",
"value": "tessie_ebert@gmail.com",
"element-type": "email"
}
],
"uuid": "b77d7bf7-ab6f-4cb0-ad18-22ac66a50a3b",
"name": "identityInfos",
"state": "TODO",
"category": "identity",
"created_at": "2024-01-25T12:21:11"
}
],
"additional_documents": []
},
"firstname": {
"status": "COMPLETED",
"uuid": "e3832733-a07c-4f29-999a-945854cae097",
"value": "Alejandra",
"element-type": "firstname"
},
"lastname": {
"status": "COMPLETED",
"uuid": "6f2bf419-ada4-4967-b6ff-4c02dee109f4",
"value": "Walter",
"element-type": "lastname"
},
"usename": {
"status": "ON_GOING",
"uuid": "a404d8cf-d4f5-412a-b0a2-fc8843fbe7ed",
"value": null,
"element-type": "birthname"
},
"email": {
"status": "COMPLETED",
"uuid": "96693dd5-4463-402a-aea7-e034b414825a",
"value": "tessie_ebert@gmail.com",
"element-type": "email"
},
"language": {
"status": "ON_GOING",
"uuid": "232259eb-02cf-48af-9693-d678fecd9dc1",
"locale": {
"identifier": "fr"
},
"element-type": "language"
},
"phone": {
"status": "COMPLETED",
"uuid": "a691c5d5-a62a-4cd9-97b1-b68c1e612d0f",
"value": "+3300000000",
"element-type": "phone"
},
"birthday": {
"status": "COMPLETED",
"uuid": "faec075e-d17c-4c7d-ad2d-8e9ee573f840",
"value": "1993-01-01T00:00:00",
"element-type": "birthday"
},
"login": null,
"bo_user_uuid": null
},
"activity_sector": {
"name": "Artisans (plumber, electricians, ...)"
},
"data": {
"type": "PARTICULAR",
"company_name": null,
"history": [],
"turnover": {
"name": "Less than 20k EUR"
},
"activity_age": null
},
"custom_reference": null,
"is_converted": false,
"conformity_status": "ON_GOING",
"conformity_status_level_two": null,
"comments_level_two": null,
"validator_level_one": null,
"validator_level_two": null,
"merchant_uuid": null,
"validation_date": null,
"validation_date_level_two": null,
"sub_type": null,
"api_infogreffe_attempt": 0,
"next_step": 0,
"full_kyc": false,
"auto_updated_data": false
},
"requestId": "3ca496d0-bd87-4457-8460-fc1e502d4962"
}
{
"eventId": "abcb1231-4c88-40f3-8707-d02fd3208bf8",
"type": "ONBOARDING_PAYMENT_ACCOUNT_UPDATED",
"creationDate": "2024-06-20T10:59:35.365601+02:00",
"object": {
"merchantEnrollmentId": "ed66501f-22eb-4240-8352-2c56e996a7d1",
"merchantEnrollmentCustomReference": "referencetest",
"merchantEnrollmentType": "BASIC",
"merchantId": "3e8c0781-68b1-474d-88e6-99773a715c49",
"merchantName": "Corben Dallas",
"merchantWalletId": "554e21dc-a59d-4f7a-a2a7-451865ece7c9",
"creationDate": "2020-12-01T15:10:28+0100",
"merchantBlockConfigurationStatus": "NONE"
},
"requestId": "a0621556-0a51-451c-b111-28bd1b55b687"
}
{
"eventId": "75b8f668-c5ce-40c8-ba51-2423004b04d2",
"type": "PAYMENTREQUEST_CREATED",
"creationDate": "2024-01-08T11:47:27.515437+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/446ae220-96f7-40ec-bd9b-9c8b83e0919b",
"entered": false,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "548c4ce7-d14f-486d-b9ac-b3caa3a9f5b6",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:47:27.494330+01:00",
"currency": "EUR",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:47:27.393093+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"TRANSACTION",
"SCT_TRANSACTION"
],
"paymentRequestId": "1c3d2a38-5f0e-41d4-a177-cf87fb5da617",
"paymentRequestStatus": "ACTIVE",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "94977411-0b77-4792-b4cb-efd133911f66",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "329c9d8f-53de-4797-b6fc-d75ce3bf2466"
}
},
"requestId": "7dc393fc-f32a-4c4e-945e-f4f231610a47"
}
{
"eventId": "092b72f8-67a3-489c-af21-684eef115c65",
"type": "PAYMENTREQUEST_CANCELED",
"creationDate": "2024-01-08T11:50:28.640892+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/446ae220-96f7-40ec-bd9b-9c8b83e0919b",
"entered": true,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "548c4ce7-d14f-486d-b9ac-b3caa3a9f5b6",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:47:27.494330+01:00",
"currency": "EUR",
"endingDate": "2024-01-08T11:50:28.619151+01:00",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:47:27.393093+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"SCT_TRANSACTION",
"TRANSACTION"
],
"paymentRequestId": "1c3d2a38-5f0e-41d4-a177-cf87fb5da617",
"paymentRequestStatus": "CANCELED",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "94977411-0b77-4792-b4cb-efd133911f66",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "329c9d8f-53de-4797-b6fc-d75ce3bf2466"
}
},
"requestId": "ff7f8976-a2fe-4a90-8bf1-55eb6a1abf5f"
}
{
"eventId": "f06c4263-7708-476e-89c8-c6c52213d034",
"type": "PAYMENTREQUEST_CLOSED",
"creationDate": "2024-01-08T11:51:37.271485+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/7c9b8626-c7b1-46dc-9efa-7f7c994839e6",
"entered": true,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "82ad8194-10e6-4639-8011-8cacd285f465",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:51:25.123940+01:00",
"currency": "EUR",
"endingDate": "2024-01-08T11:51:37.249097+01:00",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:51:25.039807+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"SCT_TRANSACTION",
"TRANSACTION"
],
"paymentRequestId": "af2d283a-eec1-4d55-9fa9-82ae6a3a1212",
"paymentRequestStatus": "CLOSED",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "49d7fa4f-88d8-43bf-8ed1-2ac68a093953",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "a26099e7-af23-4b71-baa0-24608bb10f0e"
}
},
"requestId": "19ae9e22-5c4b-4c2b-a94c-a2fd41c3dcd2"
}
{
"eventId": "04feded6-e56b-4980-903f-3f15d89405aa",
"type": "PAYMENTREQUEST_PAID",
"creationDate": "2024-01-15T12:36:33.155085+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 100000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/6afa376b-976a-4b79-8320-5baf16681b79",
"entered": true,
"initiator": true,
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "75b6d330-948e-4aef-8967-d88d2acc7190",
"payments": [
{
"creationDate": "2024-01-15T12:36:11.311665+01:00",
"paymentMethod": "TRANSACTION",
"uuid": "73d16504-a1d7-488a-8e0a-b350972f754d"
},
{
"creationDate": "2024-01-15T12:36:31.689550+01:00",
"paymentMethod": "TRANSACTION",
"uuid": "f80eee11-a633-46c2-bf08-f31d33d3107a"
}
],
"status": "PAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-15T12:34:44.362675+01:00",
"currency": "EUR",
"endingDate": "2024-01-15T12:36:33.036207+01:00",
"installment": {
"depositAmount": 0,
"feeAmount": 0,
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestInstallmentId": "979caed1-430b-4984-8697-7f85eecaf482",
"source": "CARD",
"startingDate": "2024-01-15"
},
"installments": [
{
"depositAmount": 0,
"feeAmount": 0,
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestInstallmentId": "979caed1-430b-4984-8697-7f85eecaf482",
"source": "CARD",
"startingDate": "2024-01-15"
}
],
"language": "eng",
"linkExpirationDate": "2025-01-14T12:34:44.285879+01:00",
"notificationEmails": [],
"paymentMethods": [
"INSTALLMENT",
"TRANSACTION"
],
"paymentRequestId": "2bfc4ab4-f878-46b8-8a12-3263d2d28842",
"paymentRequestStatus": "CLOSED",
"paymentStatus": "PAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 100000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "75b7c505-c546-475a-88ee-c169073d05b1",
"source": "EC"
},
"transfers": []
},
"requestId": "6847ced8-92ab-45df-9f1d-1069112b98e1"
}
{
"eventId": "8f744f4e-4101-4df4-805f-22be1620b4e7",
"type": "PAYMENTREQUEST_INSTALLMENT_SUCCEEDED",
"creationDate": "2024-01-15T12:40:38.091171+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "403203",
"last4": "2700",
"uuid": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82"
},
"cardId": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:40:35.818249+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818185+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "c3c2eb3c-9935-4eb1-a9bd-42f62f1c035c",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:40:36.418127+01:00",
"uuid": "7f642ab2-5c15-4420-b85a-a97cb819844d"
}
],
"transactions": [
"7f642ab2-5c15-4420-b85a-a97cb819844d"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 0,
"creationDate": "2024-01-15T12:40:35.818207+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "6eaf48a5-d0df-40d2-bd62-a297444d37d2",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"nextTransactionAttempt": "2024-02-15T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "b665743f-6671-4749-9727-f801c0d9915a",
"paymentRequestId": "3192c6e1-89e6-4d5a-9d96-3208b37f5c3f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-15",
"status": "ACTIVE"
},
"requestId": "b843a04a-cb43-4883-a584-7adc52142c55"
}
{
"eventId": "36650db2-3f36-479f-9518-16699a289467",
"type": "PAYMENTREQUEST_INSTALLMENT_FAILED",
"creationDate": "2024-01-15T12:43:18.344841+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "400000",
"last4": "0069",
"uuid": "3f3114d8-03eb-464d-9b0c-15200caa6d2d"
},
"cardId": "3f3114d8-03eb-464d-9b0c-15200caa6d2d",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:43:16.467780+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:43:16.467716+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"installmentId": "54c40fa5-e25e-451b-9c5f-7a6d715c449c",
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"nextTransactionAttempt": "2024-01-18T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:43:17.074117+01:00",
"uuid": "70ccb90d-3b1a-43d2-b1ee-146e65cf4906"
}
],
"transactions": [
"70ccb90d-3b1a-43d2-b1ee-146e65cf4906"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 0,
"creationDate": "2024-01-15T12:43:16.467738+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"installmentId": "1db9808f-cbd9-4498-8d35-497ff341c473",
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"nextTransactionAttempt": "2024-02-15T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "fbd3f414-f1dc-416a-a4cd-d7bf76d21b77",
"paymentRequestId": "b4a010bb-8e3f-4261-af97-4993bede753f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-15",
"status": "FAILURE"
},
"requestId": "e217a158-fc58-4b43-8c5d-6f23f7cc7977"
}
{
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"creationDate": "2021-09-08T09:39:06.212604+02:00",
"walletId": null,
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"cardId": "63afa65e-5674-49bf-9ac3-a98b82d16e92",
"mandateId": null,
"startingDate": "2021-09-08",
"endingDate": null,
"expectedEndingDate": "2022-09-07",
"currentPeriodStart": "2021-09-08",
"currentPeriodEnd": "2021-10-07",
"requestedCollectionDate": null,
"cancellationDate": null,
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"merchantSubscriptionId": null,
"subscriptionModel": {
"subscriptionModelId": "01c3f578-a589-4ef7-9bb6-d855ff0fa121",
"creationDate": "2021-09-08T09:39:06.137368+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"merchantSubscriptionModelId": null,
"amount": 10000,
"currency": "EUR",
"name": "Test Abo",
"description": null,
"intervalUnit": "MONTH",
"intervalCount": 1,
"iterationCount": 12,
"additionalData": []
},
"quantity": 1,
"status": "ACTIVE",
"cancelAtPeriodEnd": null,
"lastInvoice": {
"invoiceId": "da0622d1-723b-4567-ad40-917a92a84e05",
"creationDate": "2021-09-08T09:39:06.562016+02:00",
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"walletId": null,
"mandateId": null,
"merchantInvoiceId": null,
"amount": 10000,
"currency": "EUR",
"closed": true,
"invoiceItems": [
{
"invoiceItemId": "e8b03ea3-85ca-4e85-ab3d-6b1c83122508",
"creationDate": "2021-09-08T09:39:06.469080+02:00",
"invoiceId": "da0622d1-723b-4567-ad40-917a92a84e05",
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"walletId": null,
"mandateId": null,
"merchantInvoiceItemId": null,
"quantity": 1,
"amount": 10000,
"totalAmount": 10000,
"currency": "EUR",
"description": null,
"type": "SUBSCRIPTION",
"additionalData": []
}
],
"description": null,
"attemptCount": 1,
"paid": true,
"type": "SUBSCRIPTION",
"nextTransactionAttempt": null,
"transactions": [
"d0bcd686-1b6b-45aa-bf8a-c4cedab81127"
],
"transfers": [],
"sddTransactions": [],
"eventReceivedDate": null,
"additionalData": []
},
"endUserIp": "245.100.1.15",
"endUserLanguage": null,
"endToEndIdentification": null,
"remittanceInformation": null,
"redirect": null,
"additionalData": []
}
{
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"creationDate": "2021-09-09T10:32:15.675280+02:00",
"walletId": null,
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"cardId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"startingDate": "2021-09-09",
"endingDate": null,
"expectedEndingDate": null,
"currentPeriodStart": "2021-09-09",
"currentPeriodEnd": "2021-10-08",
"requestedCollectionDate": "2021-09-15",
"cancellationDate": null,
"paymentRequestBreakdownId": "825c03a4-fa3e-4df0-812d-f3d094f88ca3",
"paymentRequestId": "ef4bf0e4-c77c-42a3-910e-b85e84b3c92b",
"merchantSubscriptionId": null,
"subscriptionModel": {
"subscriptionModelId": "b1561842-46c1-422c-84a6-69ea8e1c8051",
"creationDate": "2017-05-10T09:20:14.268+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"merchantSubscriptionModelId": "a00e2d1b-87a1-4fb2-8e15-5d6132006d5b",
"amount": 2000,
"currency": "EUR",
"name": "premium",
"description": "abbonnement premium",
"intervalUnit": "MONTH",
"intervalCount": 1,
"iterationCount": null,
"additionalData": []
},
"quantity": 1,
"status": "ACTIVE",
"cancelAtPeriodEnd": null,
"lastInvoice": {
"invoiceId": "e257896b-86a1-41cf-865b-ac0531e2ea4a",
"creationDate": "2021-09-09T10:32:16.072897+02:00",
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"walletId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"merchantInvoiceId": null,
"amount": 2000,
"currency": "EUR",
"closed": true,
"invoiceItems": [
{
"invoiceItemId": "0dabd4f2-6e36-4731-989a-d00bdf93e748",
"creationDate": "2021-09-09T10:32:15.860404+02:00",
"invoiceId": "e257896b-86a1-41cf-865b-ac0531e2ea4a",
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"walletId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"merchantInvoiceItemId": null,
"quantity": 1,
"amount": 2000,
"totalAmount": 2000,
"currency": "EUR",
"description": null,
"type": "SUBSCRIPTION",
"additionalData": []
}
],
"description": null,
"attemptCount": 1,
"paid": true,
"type": "SUBSCRIPTION",
"nextTransactionAttempt": null,
"transactions": [],
"transfers": [],
"sddTransactions": [
"0fd0d6cb-076a-4df5-9e89-7a62b74791e8"
],
"eventReceivedDate": null,
"additionalData": []
},
"endUserIp": "92.154.127.221",
"endUserLanguage": null,
"endToEndIdentification": null,
"remittanceInformation": "PREMIUM",
"redirect": null,
"additionalData": []
}
{
"eventId": "66f20401-7ca6-47bd-95f1-830628171cf8",
"type": "PAYMENTREQUEST_TRANSACTION_FAILED",
"creationDate": "2024-01-05T14:46:59.418489+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 0,
"amountRefunded": 0,
"archivingReference": "9GUGCIZEU0VN",
"authorizationMovementId": "7ed9258a-ee75-4705-90f3-678973d2402e",
"authorizationStatus": "FAILURE",
"bankCode": "51",
"bankMessage": "Simulation : Insufficient Funds",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "30e49b6e-ed07-4b43-8862-2abd2f181678",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:46:39.151564+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "7032968c1a882c155b3d8014297daabaa7133680",
"first6": "400000",
"infoId": "90eaf823-e2e7-4757-845a-b966bbab03c6",
"last4": "0077",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:46:58.190985+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"order": {
"cardholderEmail": "GDU-Yvette5@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Buck_Gislason@hotmail.com",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "d530cdbe-b9fc-481b-b99d-8ce0db75deb4",
"transactionStatus": "FAILURE",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "c120a3c0-764a-4c7e-a705-4721784212c7"
}
{
"eventId": "11a2d5b6-b8da-4e83-8182-5bd417b0b6b6",
"type": "PAYMENTREQUEST_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-15T12:36:33.122848+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"amountCaptured": 100000,
"amountRefunded": 0,
"archivingReference": "3GZD1KYRDSHP",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "656d9ee5-8ccb-45d9-a8fe-c830adf69dfd",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"captureDate": "2024-01-15T12:36:33.020554+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "5e6269c2-b8a7-4ced-ad12-4c6cfdeda11b",
"cardTokenId": "0211ff3d-1e71-4772-8bdb-8c7e23905f86",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-15T12:36:29.312152+01:00",
"europeanEconomicArea": true,
"expirationMonth": 5,
"expirationYear": 2025,
"fingerprint": "9ede6a38739c3ce76c59bee1083409937d497e7a",
"first6": "403203",
"last4": "2700",
"productType": "CONSUMER",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:36:31.689550+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "455d5abf-4076-4b14-8804-87fc9a9ece8d",
"order": {
"cardholderEmail": "gduhamel@centralpay.eu"
},
"partialAuthorization": false,
"partialAuthorized": false,
"paymentRequestBreakdownId": "75b6d330-948e-4aef-8967-d88d2acc7190",
"paymentRequestId": "2bfc4ab4-f878-46b8-8a12-3263d2d28842",
"payoutAmount": 100000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "gduhamel@centralpay.eu",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": true,
"totalAmount": 100000,
"transactionId": "f80eee11-a633-46c2-bf08-f31d33d3107a",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "6847ced8-92ab-45df-9f1d-1069112b98e1"
}
{
"additionalData": [],
"amount": 3000,
"automaticValidation": true,
"commission": 0,
"creationDate": "2024-06-06T10:47:33.936844+02:00",
"currency": "EUR",
"endToEndIdentification": "SDD-F7FC264B-53DF-4476-BACE",
"endUserIp": "176.175.199.53",
"fee": 0,
"mandateId": "7003c371-fa71-4225-a829-d22b661271c2",
"movementId": "43e83cd6-3287-4f42-bad3-19cb2c450c2a",
"otpExpired": false,
"paymentRequestBreakdownId": "bf8f6e84-1750-49ad-9d41-785a81505733",
"payoutAmount": 3000,
"payoutCurrency": "EUR",
"pointOfSaleId": "358a1ef4-1954-4c12-9900-7365fbaf194c",
"remittanceInformation": "FDVWTKDURYOE",
"requestedCollectionDate": "2024-06-09",
"sddPaymentId": "93516864-0f9f-4d5b-92c2-e3fc9940e1f1",
"sddTransactionId": "8158643f-23c5-4934-a328-724e3d4dc251",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-06-06T10:47:33.936871+02:00",
"walletId": "23d3c9b0-ad0f-4cd5-a48e-32315827b1fa"
}
{
"eventId": "75b8f668-c5ce-40c8-ba51-2423004b04d2",
"type": "PAYMENTREQUEST_CREATED",
"creationDate": "2024-01-08T11:47:27.515437+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/446ae220-96f7-40ec-bd9b-9c8b83e0919b",
"entered": false,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "548c4ce7-d14f-486d-b9ac-b3caa3a9f5b6",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:47:27.494330+01:00",
"currency": "EUR",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:47:27.393093+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"TRANSACTION",
"SCT_TRANSACTION"
],
"paymentRequestId": "1c3d2a38-5f0e-41d4-a177-cf87fb5da617",
"paymentRequestStatus": "ACTIVE",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "94977411-0b77-4792-b4cb-efd133911f66",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "329c9d8f-53de-4797-b6fc-d75ce3bf2466"
}
},
"requestId": "7dc393fc-f32a-4c4e-945e-f4f231610a47"
}
{
"eventId": "092b72f8-67a3-489c-af21-684eef115c65",
"type": "PAYMENTREQUEST_CANCELED",
"creationDate": "2024-01-08T11:50:28.640892+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/446ae220-96f7-40ec-bd9b-9c8b83e0919b",
"entered": true,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "548c4ce7-d14f-486d-b9ac-b3caa3a9f5b6",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:47:27.494330+01:00",
"currency": "EUR",
"endingDate": "2024-01-08T11:50:28.619151+01:00",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:47:27.393093+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"SCT_TRANSACTION",
"TRANSACTION"
],
"paymentRequestId": "1c3d2a38-5f0e-41d4-a177-cf87fb5da617",
"paymentRequestStatus": "CANCELED",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "94977411-0b77-4792-b4cb-efd133911f66",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "329c9d8f-53de-4797-b6fc-d75ce3bf2466"
}
},
"requestId": "ff7f8976-a2fe-4a90-8bf1-55eb6a1abf5f"
}
{
"eventId": "f06c4263-7708-476e-89c8-c6c52213d034",
"type": "PAYMENTREQUEST_CLOSED",
"creationDate": "2024-01-08T11:51:37.271485+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 29000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/7c9b8626-c7b1-46dc-9efa-7f7c994839e6",
"entered": true,
"firstName": "Corben",
"initiator": true,
"lastName": "DALLAS",
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "82ad8194-10e6-4639-8011-8cacd285f465",
"payments": [],
"status": "UNPAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-08T11:51:25.123940+01:00",
"currency": "EUR",
"endingDate": "2024-01-08T11:51:37.249097+01:00",
"installments": [],
"language": "fre",
"linkExpirationDate": "2025-01-07T11:51:25.039807+01:00",
"merchantPaymentRequestId": "Facture 12334",
"notificationEmails": [],
"paymentMethods": [
"SCT_TRANSACTION",
"TRANSACTION"
],
"paymentRequestId": "af2d283a-eec1-4d55-9fa9-82ae6a3a1212",
"paymentRequestStatus": "CLOSED",
"paymentStatus": "UNPAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 29000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "49d7fa4f-88d8-43bf-8ed1-2ac68a093953",
"source": "EC"
},
"transfers": [],
"wireTransfer": {
"paymentRequestWireTransferId": "a26099e7-af23-4b71-baa0-24608bb10f0e"
}
},
"requestId": "19ae9e22-5c4b-4c2b-a94c-a2fd41c3dcd2"
}
{
"eventId": "04feded6-e56b-4980-903f-3f15d89405aa",
"type": "PAYMENTREQUEST_PAID",
"creationDate": "2024-01-15T12:36:33.155085+01:00",
"object": {
"additionalData": {},
"attachments": [],
"breakdowns": [
{
"amount": 100000,
"email": "gduhamel@centralpay.eu",
"endpoint": "https://test-form.centralpay.net/6afa376b-976a-4b79-8320-5baf16681b79",
"entered": true,
"initiator": true,
"paid": false,
"paymentAttempted": false,
"paymentRequestBreakdownId": "75b6d330-948e-4aef-8967-d88d2acc7190",
"payments": [
{
"creationDate": "2024-01-15T12:36:11.311665+01:00",
"paymentMethod": "TRANSACTION",
"uuid": "73d16504-a1d7-488a-8e0a-b350972f754d"
},
{
"creationDate": "2024-01-15T12:36:31.689550+01:00",
"paymentMethod": "TRANSACTION",
"uuid": "f80eee11-a633-46c2-bf08-f31d33d3107a"
}
],
"status": "PAID",
"view": 0
}
],
"createCustomer": false,
"creationDate": "2024-01-15T12:34:44.362675+01:00",
"currency": "EUR",
"endingDate": "2024-01-15T12:36:33.036207+01:00",
"installment": {
"depositAmount": 0,
"feeAmount": 0,
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestInstallmentId": "979caed1-430b-4984-8697-7f85eecaf482",
"source": "CARD",
"startingDate": "2024-01-15"
},
"installments": [
{
"depositAmount": 0,
"feeAmount": 0,
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestInstallmentId": "979caed1-430b-4984-8697-7f85eecaf482",
"source": "CARD",
"startingDate": "2024-01-15"
}
],
"language": "eng",
"linkExpirationDate": "2025-01-14T12:34:44.285879+01:00",
"notificationEmails": [],
"paymentMethods": [
"INSTALLMENT",
"TRANSACTION"
],
"paymentRequestId": "2bfc4ab4-f878-46b8-8a12-3263d2d28842",
"paymentRequestStatus": "CLOSED",
"paymentStatus": "PAID",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"scenarios": [],
"subscriptions": [],
"totalAmount": 100000,
"transaction": {
"capture": true,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"customAcceptanceData": {},
"paymentRequestTransactionId": "75b7c505-c546-475a-88ee-c169073d05b1",
"source": "EC"
},
"transfers": []
},
"requestId": "6847ced8-92ab-45df-9f1d-1069112b98e1"
}
{
"eventId": "8f744f4e-4101-4df4-805f-22be1620b4e7",
"type": "PAYMENTREQUEST_INSTALLMENT_SUCCEEDED",
"creationDate": "2024-01-15T12:40:38.091171+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "403203",
"last4": "2700",
"uuid": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82"
},
"cardId": "7af37b48-4c0a-4e5d-81ec-0ecd6758ee82",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:40:35.818249+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:40:35.818185+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "c3c2eb3c-9935-4eb1-a9bd-42f62f1c035c",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"paid": true,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:40:36.418127+01:00",
"uuid": "7f642ab2-5c15-4420-b85a-a97cb819844d"
}
],
"transactions": [
"7f642ab2-5c15-4420-b85a-a97cb819844d"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 0,
"creationDate": "2024-01-15T12:40:35.818207+01:00",
"currency": "EUR",
"customerId": "1d281559-80b2-45c0-9930-6fb94651d6b7",
"installmentId": "6eaf48a5-d0df-40d2-bd62-a297444d37d2",
"installmentPaymentId": "78e28b54-708c-45a7-a6ef-d3c1672ffe49",
"nextTransactionAttempt": "2024-02-15T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "b665743f-6671-4749-9727-f801c0d9915a",
"paymentRequestId": "3192c6e1-89e6-4d5a-9d96-3208b37f5c3f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-15",
"status": "ACTIVE"
},
"requestId": "b843a04a-cb43-4883-a584-7adc52142c55"
}
{
"eventId": "36650db2-3f36-479f-9518-16699a289467",
"type": "PAYMENTREQUEST_INSTALLMENT_FAILED",
"creationDate": "2024-01-15T12:43:18.344841+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"card": {
"commercialBrand": "VISA",
"first6": "400000",
"last4": "0069",
"uuid": "3f3114d8-03eb-464d-9b0c-15200caa6d2d"
},
"cardId": "3f3114d8-03eb-464d-9b0c-15200caa6d2d",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:43:16.467780+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"depositAmount": 0,
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"feeAmount": 0,
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"installments": [
{
"amount": 50000,
"attemptCount": 1,
"creationDate": "2024-01-15T12:43:16.467716+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"installmentId": "54c40fa5-e25e-451b-9c5f-7a6d715c449c",
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"nextTransactionAttempt": "2024-01-18T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactionDatas": [
{
"creationDate": "2024-01-15T12:43:17.074117+01:00",
"uuid": "70ccb90d-3b1a-43d2-b1ee-146e65cf4906"
}
],
"transactions": [
"70ccb90d-3b1a-43d2-b1ee-146e65cf4906"
],
"type": "INSTALLMENT"
},
{
"amount": 50000,
"attemptCount": 0,
"creationDate": "2024-01-15T12:43:16.467738+01:00",
"currency": "EUR",
"customerId": "ddf4aa07-5fd3-4ce1-bbaa-cdaafdb821d5",
"installmentId": "1db9808f-cbd9-4498-8d35-497ff341c473",
"installmentPaymentId": "e9ea4684-1277-4928-b6f0-6df6bccdb275",
"nextTransactionAttempt": "2024-02-15T04:00+01:00",
"paid": false,
"sddTransactions": [],
"transactions": [],
"type": "INSTALLMENT"
}
],
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 2,
"paymentRequestBreakdownId": "fbd3f414-f1dc-416a-a4cd-d7bf76d21b77",
"paymentRequestId": "b4a010bb-8e3f-4261-af97-4993bede753f",
"pointOfSale": {
"name": "Corben Dallas",
"uuid": "7d99a970-cc26-4de8-aa5d-d9ebf4088247"
},
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"startingDate": "2024-01-15",
"status": "FAILURE"
},
"requestId": "e217a158-fc58-4b43-8c5d-6f23f7cc7977"
}
{
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"creationDate": "2021-09-08T09:39:06.212604+02:00",
"walletId": null,
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"cardId": "63afa65e-5674-49bf-9ac3-a98b82d16e92",
"mandateId": null,
"startingDate": "2021-09-08",
"endingDate": null,
"expectedEndingDate": "2022-09-07",
"currentPeriodStart": "2021-09-08",
"currentPeriodEnd": "2021-10-07",
"requestedCollectionDate": null,
"cancellationDate": null,
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"merchantSubscriptionId": null,
"subscriptionModel": {
"subscriptionModelId": "01c3f578-a589-4ef7-9bb6-d855ff0fa121",
"creationDate": "2021-09-08T09:39:06.137368+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"merchantSubscriptionModelId": null,
"amount": 10000,
"currency": "EUR",
"name": "Test Abo",
"description": null,
"intervalUnit": "MONTH",
"intervalCount": 1,
"iterationCount": 12,
"additionalData": []
},
"quantity": 1,
"status": "ACTIVE",
"cancelAtPeriodEnd": null,
"lastInvoice": {
"invoiceId": "da0622d1-723b-4567-ad40-917a92a84e05",
"creationDate": "2021-09-08T09:39:06.562016+02:00",
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"walletId": null,
"mandateId": null,
"merchantInvoiceId": null,
"amount": 10000,
"currency": "EUR",
"closed": true,
"invoiceItems": [
{
"invoiceItemId": "e8b03ea3-85ca-4e85-ab3d-6b1c83122508",
"creationDate": "2021-09-08T09:39:06.469080+02:00",
"invoiceId": "da0622d1-723b-4567-ad40-917a92a84e05",
"subscriptionId": "26815c6a-19fe-49bd-b619-f14719f3e4ba",
"customerId": "4e06b1e7-c24c-4927-a2da-f9c2dd3d4660",
"walletId": null,
"mandateId": null,
"merchantInvoiceItemId": null,
"quantity": 1,
"amount": 10000,
"totalAmount": 10000,
"currency": "EUR",
"description": null,
"type": "SUBSCRIPTION",
"additionalData": []
}
],
"description": null,
"attemptCount": 1,
"paid": true,
"type": "SUBSCRIPTION",
"nextTransactionAttempt": null,
"transactions": [
"d0bcd686-1b6b-45aa-bf8a-c4cedab81127"
],
"transfers": [],
"sddTransactions": [],
"eventReceivedDate": null,
"additionalData": []
},
"endUserIp": "245.100.1.15",
"endUserLanguage": null,
"endToEndIdentification": null,
"remittanceInformation": null,
"redirect": null,
"additionalData": []
}
{
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"creationDate": "2021-09-09T10:32:15.675280+02:00",
"walletId": null,
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"cardId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"startingDate": "2021-09-09",
"endingDate": null,
"expectedEndingDate": null,
"currentPeriodStart": "2021-09-09",
"currentPeriodEnd": "2021-10-08",
"requestedCollectionDate": "2021-09-15",
"cancellationDate": null,
"paymentRequestBreakdownId": "825c03a4-fa3e-4df0-812d-f3d094f88ca3",
"paymentRequestId": "ef4bf0e4-c77c-42a3-910e-b85e84b3c92b",
"merchantSubscriptionId": null,
"subscriptionModel": {
"subscriptionModelId": "b1561842-46c1-422c-84a6-69ea8e1c8051",
"creationDate": "2017-05-10T09:20:14.268+02:00",
"pointOfSaleId": "cfc0b3c7-e666-4c52-b77a-96f234b873fe",
"contractId": "71602dd0-2790-4743-877b-e72530d7576d",
"merchantSubscriptionModelId": "a00e2d1b-87a1-4fb2-8e15-5d6132006d5b",
"amount": 2000,
"currency": "EUR",
"name": "premium",
"description": "abbonnement premium",
"intervalUnit": "MONTH",
"intervalCount": 1,
"iterationCount": null,
"additionalData": []
},
"quantity": 1,
"status": "ACTIVE",
"cancelAtPeriodEnd": null,
"lastInvoice": {
"invoiceId": "e257896b-86a1-41cf-865b-ac0531e2ea4a",
"creationDate": "2021-09-09T10:32:16.072897+02:00",
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"walletId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"merchantInvoiceId": null,
"amount": 2000,
"currency": "EUR",
"closed": true,
"invoiceItems": [
{
"invoiceItemId": "0dabd4f2-6e36-4731-989a-d00bdf93e748",
"creationDate": "2021-09-09T10:32:15.860404+02:00",
"invoiceId": "e257896b-86a1-41cf-865b-ac0531e2ea4a",
"subscriptionId": "da6a4622-4e5d-4da5-8d29-6c49d4052b69",
"customerId": "2f2e6ce9-e0bb-4377-8eb9-6a8506c0baa4",
"walletId": null,
"mandateId": "b08bb9e0-72e4-426a-9998-585f083338fc",
"merchantInvoiceItemId": null,
"quantity": 1,
"amount": 2000,
"totalAmount": 2000,
"currency": "EUR",
"description": null,
"type": "SUBSCRIPTION",
"additionalData": []
}
],
"description": null,
"attemptCount": 1,
"paid": true,
"type": "SUBSCRIPTION",
"nextTransactionAttempt": null,
"transactions": [],
"transfers": [],
"sddTransactions": [
"0fd0d6cb-076a-4df5-9e89-7a62b74791e8"
],
"eventReceivedDate": null,
"additionalData": []
},
"endUserIp": "92.154.127.221",
"endUserLanguage": null,
"endToEndIdentification": null,
"remittanceInformation": "PREMIUM",
"redirect": null,
"additionalData": []
}
{
"eventId": "66f20401-7ca6-47bd-95f1-830628171cf8",
"type": "PAYMENTREQUEST_TRANSACTION_FAILED",
"creationDate": "2024-01-05T14:46:59.418489+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 0,
"amountRefunded": 0,
"archivingReference": "9GUGCIZEU0VN",
"authorizationMovementId": "7ed9258a-ee75-4705-90f3-678973d2402e",
"authorizationStatus": "FAILURE",
"bankCode": "51",
"bankMessage": "Simulation : Insufficient Funds",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "30e49b6e-ed07-4b43-8862-2abd2f181678",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:46:39.151564+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "7032968c1a882c155b3d8014297daabaa7133680",
"first6": "400000",
"infoId": "90eaf823-e2e7-4757-845a-b966bbab03c6",
"last4": "0077",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:46:58.190985+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"order": {
"cardholderEmail": "GDU-Yvette5@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Buck_Gislason@hotmail.com",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "d530cdbe-b9fc-481b-b99d-8ce0db75deb4",
"transactionStatus": "FAILURE",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "c120a3c0-764a-4c7e-a705-4721784212c7"
}
{
"eventId": "11a2d5b6-b8da-4e83-8182-5bd417b0b6b6",
"type": "PAYMENTREQUEST_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-15T12:36:33.122848+01:00",
"object": {
"additionalData": {},
"amount": 100000,
"amountCaptured": 100000,
"amountRefunded": 0,
"archivingReference": "3GZD1KYRDSHP",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "656d9ee5-8ccb-45d9-a8fe-c830adf69dfd",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
"captureDate": "2024-01-15T12:36:33.020554+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "5e6269c2-b8a7-4ced-ad12-4c6cfdeda11b",
"cardTokenId": "0211ff3d-1e71-4772-8bdb-8c7e23905f86",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-15T12:36:29.312152+01:00",
"europeanEconomicArea": true,
"expirationMonth": 5,
"expirationYear": 2025,
"fingerprint": "9ede6a38739c3ce76c59bee1083409937d497e7a",
"first6": "403203",
"last4": "2700",
"productType": "CONSUMER",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-15T12:36:31.689550+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "91.229.230.41",
"endUserLanguage": "eng",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "455d5abf-4076-4b14-8804-87fc9a9ece8d",
"order": {
"cardholderEmail": "gduhamel@centralpay.eu"
},
"partialAuthorization": false,
"partialAuthorized": false,
"paymentRequestBreakdownId": "75b6d330-948e-4aef-8967-d88d2acc7190",
"paymentRequestId": "2bfc4ab4-f878-46b8-8a12-3263d2d28842",
"payoutAmount": 100000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "gduhamel@centralpay.eu",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": true,
"totalAmount": 100000,
"transactionId": "f80eee11-a633-46c2-bf08-f31d33d3107a",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "6847ced8-92ab-45df-9f1d-1069112b98e1"
}
{
"additionalData": [],
"amount": 3000,
"automaticValidation": true,
"commission": 0,
"creationDate": "2024-06-06T10:47:33.936844+02:00",
"currency": "EUR",
"endToEndIdentification": "SDD-F7FC264B-53DF-4476-BACE",
"endUserIp": "176.175.199.53",
"fee": 0,
"mandateId": "7003c371-fa71-4225-a829-d22b661271c2",
"movementId": "43e83cd6-3287-4f42-bad3-19cb2c450c2a",
"otpExpired": false,
"paymentRequestBreakdownId": "bf8f6e84-1750-49ad-9d41-785a81505733",
"payoutAmount": 3000,
"payoutCurrency": "EUR",
"pointOfSaleId": "358a1ef4-1954-4c12-9900-7365fbaf194c",
"remittanceInformation": "FDVWTKDURYOE",
"requestedCollectionDate": "2024-06-09",
"sddPaymentId": "93516864-0f9f-4d5b-92c2-e3fc9940e1f1",
"sddTransactionId": "8158643f-23c5-4934-a328-724e3d4dc251",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-06-06T10:47:33.936871+02:00",
"walletId": "23d3c9b0-ad0f-4cd5-a48e-32315827b1fa"
}
{
"eventId": "da2e06e2-c6d5-416e-91b8-3fd398e216aa",
"type": "PAYOUT_CREATED",
"creationDate": "2024-01-15T15:05:36.401305+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "9d99d793-ef34-4e4f-aefd-627da4b77fbc"
}
{
"eventId": "e1e8725c-eb98-400f-b3df-8f799a3ba165",
"type": "PAYOUT_UPDATED",
"creationDate": "2024-01-15T15:06:51.827583+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"merchantPayoutId": "Up_Test_Doc",
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "a39650ab-ddcf-4da7-965e-a0e5d44949ab",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
}
}
{
"eventId": "9630cef4-e1f4-4f5d-811d-e361c4c30c78",
"type": "PAYOUT_CANCELED",
"creationDate": "2024-01-08T15:15:55.576036+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"cancelMovementId": "258e7c45-1d4f-48fc-a026-bebb8c10014e",
"cancellationDate": "2024-01-08T15:15:55.562863+01:00",
"creationDate": "2024-01-08T15:15:22.435232+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"expectedArrivalDate": "2024-01-10",
"fee": 0,
"merchantPayoutId": "Up_Test_Doc",
"movementId": "3d8c5417-2cc9-4c7d-9504-5446cac24e87",
"net": 1,
"payoutId": "d68c9005-8954-4d17-96f5-8435a81ace20",
"payoutReference": "PAYOUT-20240108151522-a00f7a69",
"payoutType": "SCT",
"status": "CANCEL",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "7b69dbff-59eb-489f-ac0a-9df343f2bd2a"
}
{
"eventId": "9a1df5b8-6b24-4274-ad52-1295999f4a6c",
"type": "PAYOUT_PAID",
"creationDate": "2024-01-30T11:29:15.965095+01:00",
"object": {
"additionalData": {},
"amount": 100,
"arrivalDate": "2024-01-30",
"automatic": true,
"creationDate": "2024-01-26T16:56:15.147347+01:00",
"currency": "EUR",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-28",
"fee": 0,
"movementId": "b4fafbb7-e73a-4a98-bc6b-f4c7dfee7104",
"net": 100,
"payoutId": "f88cab14-b73e-44fc-adcf-9cb1f4f4c43b",
"payoutReference": "PAYOUT-20240126165615-a00f7a69",
"payoutType": "SCT",
"status": "PAID",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "ceffc00e-a708-45fd-bc16-fe0999455e06"
}
{
"eventId": "da2e06e2-c6d5-416e-91b8-3fd398e216aa",
"type": "PAYOUT_CREATED",
"creationDate": "2024-01-15T15:05:36.401305+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "9d99d793-ef34-4e4f-aefd-627da4b77fbc"
}
{
"eventId": "e1e8725c-eb98-400f-b3df-8f799a3ba165",
"type": "PAYOUT_UPDATED",
"creationDate": "2024-01-15T15:06:51.827583+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"merchantPayoutId": "Up_Test_Doc",
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "a39650ab-ddcf-4da7-965e-a0e5d44949ab",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 1,
"automatic": false,
"creationDate": "2024-01-15T15:05:36.280515+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-17",
"fee": 0,
"movementId": "e1715d31-d403-4ec5-85e4-7e41d0a3c69b",
"net": 1,
"payoutId": "d7cd6f62-1e56-4779-a48d-18977cdc643d",
"payoutReference": "PAYOUT-20240115150536-a00f7a69",
"payoutType": "SCT",
"status": "PENDING",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
}
}
{
"eventId": "9630cef4-e1f4-4f5d-811d-e361c4c30c78",
"type": "PAYOUT_CANCELED",
"creationDate": "2024-01-08T15:15:55.576036+01:00",
"object": {
"additionalData": {},
"amount": 1,
"automatic": false,
"cancelMovementId": "258e7c45-1d4f-48fc-a026-bebb8c10014e",
"cancellationDate": "2024-01-08T15:15:55.562863+01:00",
"creationDate": "2024-01-08T15:15:22.435232+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"expectedArrivalDate": "2024-01-10",
"fee": 0,
"merchantPayoutId": "Up_Test_Doc",
"movementId": "3d8c5417-2cc9-4c7d-9504-5446cac24e87",
"net": 1,
"payoutId": "d68c9005-8954-4d17-96f5-8435a81ace20",
"payoutReference": "PAYOUT-20240108151522-a00f7a69",
"payoutType": "SCT",
"status": "CANCEL",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "7b69dbff-59eb-489f-ac0a-9df343f2bd2a"
}
{
"eventId": "9a1df5b8-6b24-4274-ad52-1295999f4a6c",
"type": "PAYOUT_PAID",
"creationDate": "2024-01-30T11:29:15.965095+01:00",
"object": {
"additionalData": {},
"amount": 100,
"arrivalDate": "2024-01-30",
"automatic": true,
"creationDate": "2024-01-26T16:56:15.147347+01:00",
"currency": "EUR",
"destinationBankAccountId": "2377f038-d798-42b2-ac46-113105166bd4",
"expectedArrivalDate": "2024-01-28",
"fee": 0,
"movementId": "b4fafbb7-e73a-4a98-bc6b-f4c7dfee7104",
"net": 100,
"payoutId": "f88cab14-b73e-44fc-adcf-9cb1f4f4c43b",
"payoutReference": "PAYOUT-20240126165615-a00f7a69",
"payoutType": "SCT",
"status": "PAID",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "ceffc00e-a708-45fd-bc16-fe0999455e06"
}
{
"refundId": "3c349da5-c144-424b-bbdd-6f756b43c4ee",
"creationDate": "2021-09-08T09:40:42.140717+02:00",
"transactionId": "9c6ffb50-11cf-418c-9c9f-57a3fba20c20",
"clearingDate": null,
"cancellationDate": null,
"merchantRefundId": null,
"currency": "EUR",
"amount": 1,
"payoutCurrency": "EUR",
"payoutAmount": 1,
"commission": 0,
"fee": 0,
"description": "ma description",
"status": "UNCLEARED",
"movementId": "8981c46d-1e9e-4501-b78c-2d3e6e313fda",
"cancelMovementId": null,
"additionalData": []
}
{
"refundId": "3c349da5-c144-424b-bbdd-6f756b43c4ee",
"creationDate": "2021-09-08T09:40:42.140717+02:00",
"transactionId": "9c6ffb50-11cf-418c-9c9f-57a3fba20c20",
"clearingDate": null,
"cancellationDate": "2021-09-08T09:40:42.646025+02:00",
"merchantRefundId": null,
"currency": "EUR",
"amount": 1,
"payoutCurrency": "EUR",
"payoutAmount": 1,
"commission": 0,
"fee": 0,
"description": "ma description",
"status": "CANCELED",
"movementId": "8981c46d-1e9e-4501-b78c-2d3e6e313fda",
"cancelMovementId": "b315d96f-8dc0-437d-af5f-729a8c0bb502",
"additionalData": []
}
{
"refundId": "3c349da5-c144-424b-bbdd-6f756b43c4ee",
"creationDate": "2021-09-08T09:40:42.140717+02:00",
"transactionId": "9c6ffb50-11cf-418c-9c9f-57a3fba20c20",
"clearingDate": null,
"cancellationDate": null,
"merchantRefundId": null,
"currency": "EUR",
"amount": 1,
"payoutCurrency": "EUR",
"payoutAmount": 1,
"commission": 0,
"fee": 0,
"description": "ma description",
"status": "UNCLEARED",
"movementId": "8981c46d-1e9e-4501-b78c-2d3e6e313fda",
"cancelMovementId": null,
"additionalData": []
}
{
"refundId": "3c349da5-c144-424b-bbdd-6f756b43c4ee",
"creationDate": "2021-09-08T09:40:42.140717+02:00",
"transactionId": "9c6ffb50-11cf-418c-9c9f-57a3fba20c20",
"clearingDate": null,
"cancellationDate": "2021-09-08T09:40:42.646025+02:00",
"merchantRefundId": null,
"currency": "EUR",
"amount": 1,
"payoutCurrency": "EUR",
"payoutAmount": 1,
"commission": 0,
"fee": 0,
"description": "ma description",
"status": "CANCELED",
"movementId": "8981c46d-1e9e-4501-b78c-2d3e6e313fda",
"cancelMovementId": "b315d96f-8dc0-437d-af5f-729a8c0bb502",
"additionalData": []
}
{
"eventId": "283cb3c2-ddfd-4db2-aef7-df47e642d6b2",
"type": "SCT_TRANSACTION_CREATED",
"creationDate": "2024-01-08T16:03:10.536372+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB",
"status": "PENDING",
"transactionTransfers": []
},
"requestId": "f3ccb2bd-df53-4b50-b64a-5d503dda7440"
}
{
"eventId": "8057c6df-86d2-45e0-8cc9-9d2d7163ab99",
"type": "SCT_TRANSACTION_UPDATED",
"creationDate": "2024-01-08T16:03:44.760244+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "PENDING",
"transactionTransfers": []
},
"requestId": "a40ff9c2-3285-4b1b-aee2-de5b21402ad1",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "PENDING",
"transactionTransfers": []
}
}
{
{
"eventId": "66cedcb4-091a-4023-beb8-d64f86438c73",
"type": "SCT_TRANSACTION_CANCELED",
"creationDate": "2024-01-08T16:03:57.125156+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"cancellationDate": "2024-01-08T16:03:57.119857+01:00",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "CANCELED",
"transactionTransfers": []
},
"requestId": "8aa84040-e72b-4e78-9149-0e5478d74b10"
}
}
{
"eventId": "b6fef094-77d5-4230-8526-baa0fb4b10d6",
"type": "SCT_TRANSACTION_RECEIVED",
"creationDate": "2024-01-10T12:39:40.146639+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "CEAYFR22",
"iban": "FR7699999000019761523040665"
},
"bic": "CEAYFR22",
"commission": 0,
"creationDate": "2024-01-10T12:32:39.516605+01:00",
"currency": "EUR",
"debtorInfo": {
"address": {
"addressLines": [
"Direccion del ordenante",
"08010 BARCELONA"
],
"country": "ES"
},
"name": "GUILLAUME MAXIMILIEN JACQUES PONSARD"
},
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"fee": 0,
"iban": "FR7699999000019761523040665",
"merchantSctTransactionId": "8srWEcIiIW",
"movementId": "25d7a3f4-a421-4dc7-8554-486bf801bade",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutAmount": 12345,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": true,
"processedDate": "2024-01-10T12:39:40.099911+01:00",
"receiptDate": "2024-01-10T12:39:40.099911+01:00",
"sctTransactionId": "4cbd9866-b723-4a3a-9bf8-b30382b91909",
"sepaReference": "ZCPTDW ",
"status": "RECEIVED",
"transactionTransfers": []
},
"requestId": "4be1b982-107d-4133-bdb2-377afd4d7ae4"
}
{
"eventId": "80544b1c-a167-4dd5-b493-166642e543fd",
"type": "SCT_TRANSACTION_REVERSAL_CREATED",
"creationDate": "2024-01-11T11:48:24.125374+01:00",
"object": {
"amount": 12345,
"creationDate": "2024-01-11T11:48:24.116525+01:00",
"currency": "EUR",
"description": "Remboursement du client",
"sctTransactionId": "2cf657da-9431-4da2-9720-4b877a9b44ef",
"sctTransactionReversalId": "d5a11ee9-a598-4457-9ed8-e9a7961baaf7",
"status": "PENDING"
},
"requestId": "9ea9af82-921f-4b41-9de8-e461bc284849"
}}
{
"eventId": "180bfcfd-a46c-40e3-8d9c-e1eeb380d84f",
"type": "SCT_TRANSACTION_REVERSAL_RECEIVED",
"creationDate": "2024-01-30T12:38:45.221820+01:00",
"object": {
"amount": 12345,
"creationDate": "2024-01-11T11:48:24.116525+01:00",
"currency": "EUR",
"description": "Remboursement du client",
"expectedAvailabilityDate": "2024-01-30",
"movementId": "ec5a1db6-af35-47ad-9387-9b37e7cc6053",
"sctTransactionId": "2cf657da-9431-4da2-9720-4b877a9b44ef",
"sctTransactionReversalId": "d5a11ee9-a598-4457-9ed8-e9a7961baaf7",
"status": "RECEIVED"
},
"requestId": "20319064-8dfb-453f-ab0b-d621055606d7"
}
{
"eventId": "283cb3c2-ddfd-4db2-aef7-df47e642d6b2",
"type": "SCT_TRANSACTION_CREATED",
"creationDate": "2024-01-08T16:03:10.536372+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB",
"status": "PENDING",
"transactionTransfers": []
},
"requestId": "f3ccb2bd-df53-4b50-b64a-5d503dda7440"
}
{
"eventId": "8057c6df-86d2-45e0-8cc9-9d2d7163ab99",
"type": "SCT_TRANSACTION_UPDATED",
"creationDate": "2024-01-08T16:03:44.760244+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "PENDING",
"transactionTransfers": []
},
"requestId": "a40ff9c2-3285-4b1b-aee2-de5b21402ad1",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "PENDING",
"transactionTransfers": []
}
}
{
{
"eventId": "66cedcb4-091a-4023-beb8-d64f86438c73",
"type": "SCT_TRANSACTION_CANCELED",
"creationDate": "2024-01-08T16:03:57.125156+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "AXABFRPP",
"iban": "FR7612548029980000000150086"
},
"bic": "AXABFRPP",
"cancellationDate": "2024-01-08T16:03:57.119857+01:00",
"creationDate": "2024-01-08T16:03:10.516099+01:00",
"currency": "EUR",
"description": "ma description",
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"iban": "FR7612548029980000000150086",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": false,
"refunds": [],
"sctTransactionId": "5b6ffc2f-126d-434f-bf3d-fd0364017192",
"sepaReference": "TOKWTB ",
"status": "CANCELED",
"transactionTransfers": []
},
"requestId": "8aa84040-e72b-4e78-9149-0e5478d74b10"
}
}
{
"eventId": "b6fef094-77d5-4230-8526-baa0fb4b10d6",
"type": "SCT_TRANSACTION_RECEIVED",
"creationDate": "2024-01-10T12:39:40.146639+01:00",
"object": {
"additionalData": {},
"amount": 12345,
"bankAccount": {
"bic": "CEAYFR22",
"iban": "FR7699999000019761523040665"
},
"bic": "CEAYFR22",
"commission": 0,
"creationDate": "2024-01-10T12:32:39.516605+01:00",
"currency": "EUR",
"debtorInfo": {
"address": {
"addressLines": [
"Direccion del ordenante",
"08010 BARCELONA"
],
"country": "ES"
},
"name": "GUILLAUME MAXIMILIEN JACQUES PONSARD"
},
"destinationBankAccountId": "ae909782-18d2-42dc-b9b7-9e3c38dac167",
"fee": 0,
"iban": "FR7699999000019761523040665",
"merchantSctTransactionId": "8srWEcIiIW",
"movementId": "25d7a3f4-a421-4dc7-8554-486bf801bade",
"order": {
"firstName": "CORBEN",
"lastName": "DALLAS"
},
"payoutAmount": 12345,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"processed": true,
"processedDate": "2024-01-10T12:39:40.099911+01:00",
"receiptDate": "2024-01-10T12:39:40.099911+01:00",
"sctTransactionId": "4cbd9866-b723-4a3a-9bf8-b30382b91909",
"sepaReference": "ZCPTDW ",
"status": "RECEIVED",
"transactionTransfers": []
},
"requestId": "4be1b982-107d-4133-bdb2-377afd4d7ae4"
}
{
"eventId": "80544b1c-a167-4dd5-b493-166642e543fd",
"type": "SCT_TRANSACTION_REVERSAL_CREATED",
"creationDate": "2024-01-11T11:48:24.125374+01:00",
"object": {
"amount": 12345,
"creationDate": "2024-01-11T11:48:24.116525+01:00",
"currency": "EUR",
"description": "Remboursement du client",
"sctTransactionId": "2cf657da-9431-4da2-9720-4b877a9b44ef",
"sctTransactionReversalId": "d5a11ee9-a598-4457-9ed8-e9a7961baaf7",
"status": "PENDING"
},
"requestId": "9ea9af82-921f-4b41-9de8-e461bc284849"
}}
{
"eventId": "180bfcfd-a46c-40e3-8d9c-e1eeb380d84f",
"type": "SCT_TRANSACTION_REVERSAL_RECEIVED",
"creationDate": "2024-01-30T12:38:45.221820+01:00",
"object": {
"amount": 12345,
"creationDate": "2024-01-11T11:48:24.116525+01:00",
"currency": "EUR",
"description": "Remboursement du client",
"expectedAvailabilityDate": "2024-01-30",
"movementId": "ec5a1db6-af35-47ad-9387-9b37e7cc6053",
"sctTransactionId": "2cf657da-9431-4da2-9720-4b877a9b44ef",
"sctTransactionReversalId": "d5a11ee9-a598-4457-9ed8-e9a7961baaf7",
"status": "RECEIVED"
},
"requestId": "20319064-8dfb-453f-ab0b-d621055606d7"
}
{
"eventId": "ba739034-7e86-4280-9e19-b8d3be3f683c",
"type": "MANDATE_CREATED",
"creationDate": "2024-01-11T12:41:18.209916+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+33600000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"rum": "GT20KDMVN",
"sddTransactions": [],
"status": "PENDING",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "800c83a7-d37b-4c33-9907-8874d5c7fa87"
}
{
"eventId": "d60f35d6-c20a-4317-9ea9-dc90fd4bcd1b",
"type": "MANDATE_SIGNED",
"creationDate": "2024-01-11T12:43:07.337387+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+33600000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"pdfFileId": "7b8d75bd-8f09-400d-af9c-c8787a0858fc",
"rum": "GT20KDMVN",
"sddTransactions": [],
"signatureCity": "TOURS",
"signatureDate": "2024-01-11T12:43:06.838810+01:00",
"signatureIpAddress": "245.100.1.15",
"status": "ACTIVE",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "4c40f8ba-94fd-433c-b7eb-71bbad68f51a"
}
{
"eventId": "8f103a2e-8e05-4af7-9b57-a76dc3fe1b48",
"type": "MANDATE_RENEWOTP",
"creationDate": "2024-01-11T14:34:56.606277+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T14:34:36.412083+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+3300000000",
"description": "ma description",
"language": "fre",
"mandateId": "ffc24f5a-f43a-4e9f-b4f9-1d7d1b87a46c",
"otpExpirationDate": "2024-01-11T14:49:56.133201+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"rum": "YRHCV3K37",
"sddTransactions": [],
"status": "PENDING",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "a427c5b9-dbf4-4cb2-b9a5-bdf76418901b"
}
{
"eventId": "8961d9a3-1b38-4275-9ef7-1c3f9dc993e9",
"type": "MANDATE_OBSOLETED",
"creationDate": "2024-01-11T14:34:29.346268+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+3300000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"obsolescenceDate": "2024-01-11T14:34:29.315888+01:00",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": true,
"paymentType": "PUCT",
"pdfFileId": "7b8d75bd-8f09-400d-af9c-c8787a0858fc",
"rum": "GT20KDMVN",
"sddTransactions": [
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"cancellationDate": "2024-01-11T12:46:20.844829+01:00",
"creationDate": "2024-01-11T12:46:04.839313+01:00",
"currency": "EUR",
"endToEndIdentification": "2(OSAI,:P",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "a5530b31-ef60-4511-adeb-18843f61ef81",
"sequenceType": "RCUR",
"status": "CANCELED",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:04.839337+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"creationDate": "2024-01-11T12:46:27.952977+01:00",
"currency": "EUR",
"endToEndIdentification": "MUPXTJXVK",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "3b781c44-ca15-4cbf-a529-f73e9c9fb0cf",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:27.953004+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"creationDate": "2024-01-11T12:53:09.201843+01:00",
"currency": "EUR",
"endToEndIdentification": "7C28543RZ",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "af2e9240-d58f-478d-8e64-d8041ac882e0",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:53:09.201871+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": true,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T13:03:17.329335+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"commission": 0,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"fee": 0,
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"movementId": "0a6ffbe5-f067-4c03-9f62-672cb46e312c",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutAmount": 12,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-01-11T14:30:56.448356+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
}
],
"signatureCity": "TOURS",
"signatureDate": "2024-01-11T12:43:06.838810+01:00",
"signatureIpAddress": "245.100.1.15",
"status": "OBSOLETE",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "8d56fb75-1ce2-458b-b057-e8722ec22427"
}
{
"eventId": "bc6cb3b3-2960-4833-88a4-ddce9335fcbe",
"type": "SDDTRANSACTION_CREATED",
"creationDate": "2024-01-11T13:02:56.629960+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "PENDING",
"transactionTransfers": [],
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "27dd69d1-3789-4abc-9e9c-d6644c436f9b"
}
{
"eventId": "2a21fd0e-19f2-469e-a80d-0300398f7d40",
"type": "SDDTRANSACTION_VALIDATED",
"creationDate": "2024-01-11T13:03:17.335248+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T13:03:17.329335+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "3af961bc-140f-4630-bdda-cff9854484b0"
}
{
"eventId": "e54db468-ee08-4f61-83b2-c91b7c6a0c05",
"type": "SDDTRANSACTION_CLEARED",
"creationDate": "2024-01-11T14:30:59.249935+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"commission": 0,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"fee": 0,
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"movementId": "0a6ffbe5-f067-4c03-9f62-672cb46e312c",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutAmount": 12,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-01-11T14:30:56.448356+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "5a2c73f8-1a46-451c-9444-608cb8a1f92d"
}
{
"eventId": "894cf6da-e9d6-41b4-8504-d541c13dd7e5",
"type": "SDDTRANSACTION_CANCELED",
"creationDate": "2024-01-11T12:46:20.865252+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"cancellationDate": "2024-01-11T12:46:20.844829+01:00",
"creationDate": "2024-01-11T12:46:04.839313+01:00",
"currency": "EUR",
"endToEndIdentification": "2(OSAI,:P",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "a5530b31-ef60-4511-adeb-18843f61ef81",
"sequenceType": "RCUR",
"status": "CANCELED",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:04.839337+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "3f82090d-f76b-4c3a-9d12-4befb22313e5"
}
{
"eventId": "fd352df9-2abc-43b8-a761-07e28375d4ff",
"type": "SDDTRANSACTION_RENEWOTP",
"creationDate": "2024-01-11T14:28:46.213454+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "PENDING",
"transactionTransfers": [],
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "85a68830-fa0f-41c9-8c80-d5c578f998f9"
}
{
"amount": 3000,
"creationDate": "2024-06-06T11:34:22.157018+02:00",
"currency": "EUR",
"fee": 0,
"movementId": "fe43e785-eefc-41f8-878a-b87cac81d8e5",
"net": 3000,
"pointOfSaleId": "358a1ef4-1954-4c12-9900-7365fbaf194c",
"reasonCode": "MS02",
"reasonMessage": "By order of the beneficiary",
"sddTransactionId": "8158643f-23c5-4934-a328-724e3d4dc251",
"sddTransactionReversalId": "956f5f50-6a19-4c53-9719-fd4135cb371c"
}
{
"eventId": "ba739034-7e86-4280-9e19-b8d3be3f683c",
"type": "MANDATE_CREATED",
"creationDate": "2024-01-11T12:41:18.209916+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+33600000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"rum": "GT20KDMVN",
"sddTransactions": [],
"status": "PENDING",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "800c83a7-d37b-4c33-9907-8874d5c7fa87"
}
{
"eventId": "d60f35d6-c20a-4317-9ea9-dc90fd4bcd1b",
"type": "MANDATE_SIGNED",
"creationDate": "2024-01-11T12:43:07.337387+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+33600000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"pdfFileId": "7b8d75bd-8f09-400d-af9c-c8787a0858fc",
"rum": "GT20KDMVN",
"sddTransactions": [],
"signatureCity": "TOURS",
"signatureDate": "2024-01-11T12:43:06.838810+01:00",
"signatureIpAddress": "245.100.1.15",
"status": "ACTIVE",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "4c40f8ba-94fd-433c-b7eb-71bbad68f51a"
}
{
"eventId": "8f103a2e-8e05-4af7-9b57-a76dc3fe1b48",
"type": "MANDATE_RENEWOTP",
"creationDate": "2024-01-11T14:34:56.606277+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T14:34:36.412083+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+3300000000",
"description": "ma description",
"language": "fre",
"mandateId": "ffc24f5a-f43a-4e9f-b4f9-1d7d1b87a46c",
"otpExpirationDate": "2024-01-11T14:49:56.133201+01:00",
"otpExpired": false,
"paymentType": "PUCT",
"rum": "YRHCV3K37",
"sddTransactions": [],
"status": "PENDING",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "a427c5b9-dbf4-4cb2-b9a5-bdf76418901b"
}
{
"eventId": "8961d9a3-1b38-4275-9ef7-1c3f9dc993e9",
"type": "MANDATE_OBSOLETED",
"creationDate": "2024-01-11T14:34:29.346268+01:00",
"object": {
"additionalData": {},
"creationDate": "2024-01-11T12:41:17.403384+01:00",
"creditorBankAccountId": "d33c400b-9338-4916-a4ca-e8affcfd9ebc",
"customerId": "78497f3c-baf4-42ae-92e2-cc0cfdd69c2c",
"debtorBankAccountId": "053c0160-9b62-4424-aaf7-6f74e6d5f7f6",
"debtorEmail": "gduhamel@centralpay.eu",
"debtorPhone": "+3300000000",
"description": "ma description",
"language": "fre",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"obsolescenceDate": "2024-01-11T14:34:29.315888+01:00",
"otpExpirationDate": "2024-01-11T12:56:17.403395+01:00",
"otpExpired": true,
"paymentType": "PUCT",
"pdfFileId": "7b8d75bd-8f09-400d-af9c-c8787a0858fc",
"rum": "GT20KDMVN",
"sddTransactions": [
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"cancellationDate": "2024-01-11T12:46:20.844829+01:00",
"creationDate": "2024-01-11T12:46:04.839313+01:00",
"currency": "EUR",
"endToEndIdentification": "2(OSAI,:P",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "a5530b31-ef60-4511-adeb-18843f61ef81",
"sequenceType": "RCUR",
"status": "CANCELED",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:04.839337+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"creationDate": "2024-01-11T12:46:27.952977+01:00",
"currency": "EUR",
"endToEndIdentification": "MUPXTJXVK",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "3b781c44-ca15-4cbf-a529-f73e9c9fb0cf",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:27.953004+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"creationDate": "2024-01-11T12:53:09.201843+01:00",
"currency": "EUR",
"endToEndIdentification": "7C28543RZ",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "af2e9240-d58f-478d-8e64-d8041ac882e0",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:53:09.201871+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": true,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T13:03:17.329335+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
{
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"commission": 0,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"fee": 0,
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"movementId": "0a6ffbe5-f067-4c03-9f62-672cb46e312c",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutAmount": 12,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-01-11T14:30:56.448356+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
}
],
"signatureCity": "TOURS",
"signatureDate": "2024-01-11T12:43:06.838810+01:00",
"signatureIpAddress": "245.100.1.15",
"status": "OBSOLETE",
"ultimateCreditorIdentityId": "2df8d9cd-afcc-47dd-8593-560028b66f50"
},
"requestId": "8d56fb75-1ce2-458b-b057-e8722ec22427"
}
{
"eventId": "bc6cb3b3-2960-4833-88a4-ddce9335fcbe",
"type": "SDDTRANSACTION_CREATED",
"creationDate": "2024-01-11T13:02:56.629960+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "PENDING",
"transactionTransfers": [],
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "27dd69d1-3789-4abc-9e9c-d6644c436f9b"
}
{
"eventId": "2a21fd0e-19f2-469e-a80d-0300398f7d40",
"type": "SDDTRANSACTION_VALIDATED",
"creationDate": "2024-01-11T13:03:17.335248+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T13:02:56.373932+01:00",
"currency": "EUR",
"endToEndIdentification": "M6C+XE3H5",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T13:17:56.374014+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "96747d6a-e6e3-4d8e-97cf-22f3e407a57e",
"sequenceType": "RCUR",
"status": "ACTIVE",
"transactionTransfers": [],
"validationDate": "2024-01-11T13:03:17.329335+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "3af961bc-140f-4630-bdda-cff9854484b0"
}
{
"eventId": "e54db468-ee08-4f61-83b2-c91b7c6a0c05",
"type": "SDDTRANSACTION_CLEARED",
"creationDate": "2024-01-11T14:30:59.249935+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"commission": 0,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"fee": 0,
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"movementId": "0a6ffbe5-f067-4c03-9f62-672cb46e312c",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutAmount": 12,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "CLEARED",
"transactionTransfers": [],
"validationDate": "2024-01-11T14:30:56.448356+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "5a2c73f8-1a46-451c-9444-608cb8a1f92d"
}
{
"eventId": "894cf6da-e9d6-41b4-8504-d541c13dd7e5",
"type": "SDDTRANSACTION_CANCELED",
"creationDate": "2024-01-11T12:46:20.865252+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": true,
"cancellationDate": "2024-01-11T12:46:20.844829+01:00",
"creationDate": "2024-01-11T12:46:04.839313+01:00",
"currency": "EUR",
"endToEndIdentification": "2(OSAI,:P",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-23",
"sddTransactionId": "a5530b31-ef60-4511-adeb-18843f61ef81",
"sequenceType": "RCUR",
"status": "CANCELED",
"transactionTransfers": [],
"validationDate": "2024-01-11T12:46:04.839337+01:00",
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "3f82090d-f76b-4c3a-9d12-4befb22313e5"
}
{
"eventId": "fd352df9-2abc-43b8-a761-07e28375d4ff",
"type": "SDDTRANSACTION_RENEWOTP",
"creationDate": "2024-01-11T14:28:46.213454+01:00",
"object": {
"additionalData": {},
"amount": 12,
"automaticValidation": false,
"creationDate": "2024-01-11T14:28:41.754664+01:00",
"currency": "EUR",
"endToEndIdentification": "84J4ZDNEW",
"endUserIp": "245.100.1.15",
"mandateId": "f4d63345-b84c-47d3-ad65-bd8cb255dc8a",
"otpExpirationDate": "2024-01-11T14:43:46.129105+01:00",
"otpExpired": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"remittanceInformation": "TEST",
"requestedCollectionDate": "2024-01-12",
"sddTransactionId": "f6f5ddbc-1e4c-499c-bee2-0aaa6190a698",
"sequenceType": "RCUR",
"status": "PENDING",
"transactionTransfers": [],
"walletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050"
},
"requestId": "85a68830-fa0f-41c9-8c80-d5c578f998f9"
}
{
"amount": 3000,
"creationDate": "2024-06-06T11:34:22.157018+02:00",
"currency": "EUR",
"fee": 0,
"movementId": "fe43e785-eefc-41f8-878a-b87cac81d8e5",
"net": 3000,
"pointOfSaleId": "358a1ef4-1954-4c12-9900-7365fbaf194c",
"reasonCode": "MS02",
"reasonMessage": "By order of the beneficiary",
"sddTransactionId": "8158643f-23c5-4934-a328-724e3d4dc251",
"sddTransactionReversalId": "956f5f50-6a19-4c53-9719-fd4135cb371c"
}
{
"eventId": "396d5bf8-f494-4ba6-91ef-29bd6be595b1",
"type": "SUBSCRIPTIONMODEL_CREATED",
"creationDate": "2024-01-08T11:56:53.360135+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
},
"requestId": "9dd48255-2b54-40bb-bd38-dfeac5d0535b"
}
{
"eventId": "d00f3f00-b2d6-4de4-8c41-a106b88054b9",
"type": "SUBSCRIPTIONMODEL_UPDATED",
"creationDate": "2024-01-08T11:58:22.826908+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "CPMInnn",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
},
"requestId": "4bc97650-9a0e-4032-ba46-8088c1e31b0b",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
}
}
{
"eventId": "f87999fa-ab71-4a57-bc1f-b360670ef593",
"type": "SUBSCRIPTION_CREATED",
"creationDate": "2024-01-08T12:24:12.821583+01:00",
"object": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "Gauthier refapi",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "c66d38ac-5f7d-4a52-840c-ebadade3bf4f"
}
{
"eventId": "3da295c6-403e-4080-9398-9cebf7efbc37",
"type": "SUBSCRIPTION_UPDATED",
"creationDate": "2024-01-08T12:25:27.579680+01:00",
"object": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "TEST001",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "10797b88-f4ff-48f5-bc79-c417333b92d5",
"objectBeforeUpdate": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "Gauthier refapi",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
}
}
{
"eventId": "298e5eae-4447-4981-932e-633adbb97e5f",
"type": "SUBSCRIPTION_CANCELED",
"creationDate": "2024-01-08T12:26:46.705238+01:00",
"object": {
"additionalData": {},
"cancelAtPeriodEnd": false,
"cancellationDate": "2024-01-08T12:26:46.701626+01:00",
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"currentPeriodEnd": "2024-01-08",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"endingDate": "2024-01-08",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "TEST001",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "CANCELED",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "bd8f1a27-bae3-4cfd-8471-7f6e878c6dc7"
}
{
"eventId": "3c8ca51e-aa44-41ca-ad24-872a86ed35ee",
"type": "SUBSCRIPTION_FAILED",
"creationDate": "2024-01-15T11:59:56.223023+01:00",
"object": {
"additionalData": {},
"cancelAtPeriodEnd": false,
"cancellationDate": "2024-01-15T11:59:55.877297+01:00",
"cardId": "0a6b2fdc-85e4-4ffa-bffa-0ae276e11aa3",
"creationDate": "2024-01-15T11:59:52.983206+01:00",
"currentPeriodEnd": "2024-01-15",
"currentPeriodStart": "2024-01-15",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"endUserIp": "245.100.1.15",
"endingDate": "2024-01-15",
"expectedEndingDate": "2025-01-14",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": true,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-15",
"status": "CANCELED",
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "ac2cae53-8d39-4e5a-8098-bcf0ab55a7cc"
}
{
"eventId": "22c7c038-2aa4-4550-9fd0-27e5395c250d",
"type": "SUBSCRIPTION_FAILURE",
"creationDate": "2024-01-15T11:59:55.661209+01:00",
"object": {
"additionalData": {},
"cardId": "0a6b2fdc-85e4-4ffa-bffa-0ae276e11aa3",
"creationDate": "2024-01-15T11:59:52.983206+01:00",
"currentPeriodEnd": "2024-02-14",
"currentPeriodStart": "2024-01-15",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-14",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": false,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-15",
"status": "FAILURE",
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "1c35bbaf-0f37-44e1-a7e5-c3f10be0a9a4"
}
{
"eventId": "536eb70e-cb79-44a6-be28-4384445583c2",
"type": "SUBSCRIPTION_REACTIVATED",
"creationDate": "2024-01-11T15:12:05.092897+01:00",
"object": {
"additionalData": {},
"cardId": "7d5f52b0-ef15-4a04-9c06-c4a9ac76f4bf",
"creationDate": "2024-01-11T15:11:29.487853+01:00",
"currentPeriodEnd": "2024-02-10",
"currentPeriodStart": "2024-01-11",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"endUserIp": "245.100.1.15",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": true,
"creationDate": "2024-01-11T15:11:30.057522+01:00",
"currency": "EUR",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"invoiceId": "94185799-1ac6-4206-8df2-006043d0e2a9",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:11:29.798622+01:00",
"currency": "EUR",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"invoiceId": "94185799-1ac6-4206-8df2-006043d0e2a9",
"invoiceItemId": "cd4325ca-4f61-4886-98c6-a524682ee0e2",
"quantity": 1,
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"paid": true,
"sddTransactions": [],
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"transactions": [
"3f462466-4a71-480c-b062-e2023ee99b17"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-11",
"status": "ACTIVE",
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "69ac4f1d-059b-4065-adc2-90f0eb6a98ab"
}
{
"eventId": "6167d379-fb95-4425-8e9b-af74f4235bfc",
"type": "INVOICEITEM_CREATED",
"creationDate": "2024-01-08T12:30:46.157764+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
},
"requestId": "d7cd40bd-88de-4956-9c42-baf5a0549f1b"
}
{
"eventId": "353dd2fd-934e-4a20-9f12-b47bf213a35c",
"type": "INVOICEITEM_UPDATED",
"creationDate": "2024-01-15T10:59:30.750004+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 2,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 20000,
"type": "MANUAL"
},
"requestId": "9678a75a-aa0c-4023-8d2a-56b56dfeae87",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 3,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 30000,
"type": "MANUAL"
}
}
{
"eventId": "ae992cbd-d82f-495a-b7b7-4627dc9806e8",
"type": "INVOICEITEM_DELETED",
"creationDate": "2024-01-15T11:00:04.748878+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 2,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 20000,
"type": "MANUAL"
},
"requestId": "fe0e462f-81d9-4640-abbd-ce6c914432b6"
}
{
"eventId": "59df2504-3ab7-46c3-8469-0957d579b014",
"type": "INVOICE_CREATED",
"creationDate": "2024-01-08T12:31:18.271671+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "1b51631e-d6d7-4632-bc8f-c67bd6f52729"
}
{
{
"eventId": "3c63e5da-1bce-4c5c-9dfc-1a206fda69a7",
"type": "INVOICE_UPDATED",
"creationDate": "2024-01-08T12:31:25.469957+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "176cf4e9-4669-473c-a9cb-f102fd6aa2ab",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
}
}
}
{
"eventId": "32cc898a-112f-43fd-921e-be8613d85b73",
"type": "INVOICE_CLOSED",
"creationDate": "2024-01-08T12:31:33.554755+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": true,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "36e1f1c0-b08b-41e1-a35b-bc0942b084f7"
}
{
"eventId": "c3e22524-8677-447f-9c70-caee15bdb31a",
"type": "INVOICE_REOPEN",
"creationDate": "2024-01-08T12:31:38.069325+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "7ef43ab1-2249-43b2-834e-dcad31d609a5"
}
{
"eventId": "23ef2df3-0e6d-4397-b877-aba2acea2ed1",
"type": "INVOICE_TRANSACTION_FAILED",
"creationDate": "2024-01-15T11:59:55.647989+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": false,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"requestId": "1c35bbaf-0f37-44e1-a7e5-c3f10be0a9a4"
}
{
"eventId": "58b1922a-a959-43c3-aeea-784f6970586c",
"type": "INVOICE_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-08T12:31:48.444350+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": true,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"paid": true,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [
"67cfc05b-d06c-4f2b-8aec-2033e0c61478"
],
"transfers": [],
"type": "MANUAL"
},
"requestId": "01fb7049-bd27-4ec0-846d-605c352bd2f9"
}
{
"eventId": "396d5bf8-f494-4ba6-91ef-29bd6be595b1",
"type": "SUBSCRIPTIONMODEL_CREATED",
"creationDate": "2024-01-08T11:56:53.360135+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
},
"requestId": "9dd48255-2b54-40bb-bd38-dfeac5d0535b"
}
{
"eventId": "d00f3f00-b2d6-4de4-8c41-a106b88054b9",
"type": "SUBSCRIPTIONMODEL_UPDATED",
"creationDate": "2024-01-08T11:58:22.826908+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "CPMInnn",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
},
"requestId": "4bc97650-9a0e-4032-ba46-8088c1e31b0b",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T11:56:53.353430+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "50eeed1d-b908-4fc3-8863-466a733b272c"
}
}
{
"eventId": "f87999fa-ab71-4a57-bc1f-b360670ef593",
"type": "SUBSCRIPTION_CREATED",
"creationDate": "2024-01-08T12:24:12.821583+01:00",
"object": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "Gauthier refapi",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "c66d38ac-5f7d-4a52-840c-ebadade3bf4f"
}
{
"eventId": "3da295c6-403e-4080-9398-9cebf7efbc37",
"type": "SUBSCRIPTION_UPDATED",
"creationDate": "2024-01-08T12:25:27.579680+01:00",
"object": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "TEST001",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "10797b88-f4ff-48f5-bc79-c417333b92d5",
"objectBeforeUpdate": {
"additionalData": {},
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "Gauthier refapi",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "ACTIVE",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
}
}
{
"eventId": "298e5eae-4447-4981-932e-633adbb97e5f",
"type": "SUBSCRIPTION_CANCELED",
"creationDate": "2024-01-08T12:26:46.705238+01:00",
"object": {
"additionalData": {},
"cancelAtPeriodEnd": false,
"cancellationDate": "2024-01-08T12:26:46.701626+01:00",
"cardId": "8750301a-f2ae-4447-8a3a-62e37675e1ca",
"creationDate": "2024-01-08T12:24:12.700858+01:00",
"currentPeriodEnd": "2024-01-08",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"endUserIp": "245.100.1.15",
"endingDate": "2024-01-08",
"expectedEndingDate": "2025-01-09",
"merchantSubscriptionId": "TEST001",
"quantity": 1,
"startingDate": "2024-01-10",
"status": "CANCELED",
"subscriptionId": "c64ba2e5-a0b1-43e2-867a-27555c355331",
"subscriptionModel": {
"additionalData": {},
"amount": 100,
"creationDate": "2024-01-08T12:20:23.305903+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test refapi",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "e16a35bf-ca34-48b7-9726-139c15e89fa9"
}
},
"requestId": "bd8f1a27-bae3-4cfd-8471-7f6e878c6dc7"
}
{
"eventId": "3c8ca51e-aa44-41ca-ad24-872a86ed35ee",
"type": "SUBSCRIPTION_FAILED",
"creationDate": "2024-01-15T11:59:56.223023+01:00",
"object": {
"additionalData": {},
"cancelAtPeriodEnd": false,
"cancellationDate": "2024-01-15T11:59:55.877297+01:00",
"cardId": "0a6b2fdc-85e4-4ffa-bffa-0ae276e11aa3",
"creationDate": "2024-01-15T11:59:52.983206+01:00",
"currentPeriodEnd": "2024-01-15",
"currentPeriodStart": "2024-01-15",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"endUserIp": "245.100.1.15",
"endingDate": "2024-01-15",
"expectedEndingDate": "2025-01-14",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": true,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-15",
"status": "CANCELED",
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "ac2cae53-8d39-4e5a-8098-bcf0ab55a7cc"
}
{
"eventId": "22c7c038-2aa4-4550-9fd0-27e5395c250d",
"type": "SUBSCRIPTION_FAILURE",
"creationDate": "2024-01-15T11:59:55.661209+01:00",
"object": {
"additionalData": {},
"cardId": "0a6b2fdc-85e4-4ffa-bffa-0ae276e11aa3",
"creationDate": "2024-01-15T11:59:52.983206+01:00",
"currentPeriodEnd": "2024-02-14",
"currentPeriodStart": "2024-01-15",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"endUserIp": "245.100.1.15",
"expectedEndingDate": "2025-01-14",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": false,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-15",
"status": "FAILURE",
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "1c35bbaf-0f37-44e1-a7e5-c3f10be0a9a4"
}
{
"eventId": "536eb70e-cb79-44a6-be28-4384445583c2",
"type": "SUBSCRIPTION_REACTIVATED",
"creationDate": "2024-01-11T15:12:05.092897+01:00",
"object": {
"additionalData": {},
"cardId": "7d5f52b0-ef15-4a04-9c06-c4a9ac76f4bf",
"creationDate": "2024-01-11T15:11:29.487853+01:00",
"currentPeriodEnd": "2024-02-10",
"currentPeriodStart": "2024-01-11",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"endUserIp": "245.100.1.15",
"lastInvoice": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": true,
"creationDate": "2024-01-11T15:11:30.057522+01:00",
"currency": "EUR",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"invoiceId": "94185799-1ac6-4206-8df2-006043d0e2a9",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:11:29.798622+01:00",
"currency": "EUR",
"customerId": "dc9623bd-3f3a-4d79-8ae2-0e6b3ebe367d",
"invoiceId": "94185799-1ac6-4206-8df2-006043d0e2a9",
"invoiceItemId": "cd4325ca-4f61-4886-98c6-a524682ee0e2",
"quantity": 1,
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"paid": true,
"sddTransactions": [],
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"transactions": [
"3f462466-4a71-480c-b062-e2023ee99b17"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"merchantSubscriptionId": "Test refapi gogo",
"quantity": 1,
"startingDate": "2024-01-11",
"status": "ACTIVE",
"subscriptionId": "cb2a2422-2a4d-4818-9647-02107e69f98b",
"subscriptionModel": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-11T15:02:53.061463+01:00",
"currency": "EUR",
"intervalCount": 1,
"intervalUnit": "MONTH",
"iterationCount": 12,
"name": "Test Abo",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"subscriptionModelId": "7cd1b504-bed3-4435-84be-2e19f2c8e2f6"
}
},
"requestId": "69ac4f1d-059b-4065-adc2-90f0eb6a98ab"
}
{
"eventId": "6167d379-fb95-4425-8e9b-af74f4235bfc",
"type": "INVOICEITEM_CREATED",
"creationDate": "2024-01-08T12:30:46.157764+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
},
"requestId": "d7cd40bd-88de-4956-9c42-baf5a0549f1b"
}
{
"eventId": "353dd2fd-934e-4a20-9f12-b47bf213a35c",
"type": "INVOICEITEM_UPDATED",
"creationDate": "2024-01-15T10:59:30.750004+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 2,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 20000,
"type": "MANUAL"
},
"requestId": "9678a75a-aa0c-4023-8d2a-56b56dfeae87",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 3,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 30000,
"type": "MANUAL"
}
}
{
"eventId": "ae992cbd-d82f-495a-b7b7-4627dc9806e8",
"type": "INVOICEITEM_DELETED",
"creationDate": "2024-01-15T11:00:04.748878+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:44:49.815091+01:00",
"currency": "EUR",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"invoiceItemId": "292c516b-e320-4391-995a-b4a1205e0e47",
"quantity": 2,
"subscriptionId": "5b217597-213f-4bf3-b94b-6749e499cf98",
"totalAmount": 20000,
"type": "MANUAL"
},
"requestId": "fe0e462f-81d9-4640-abbd-ce6c914432b6"
}
{
"eventId": "59df2504-3ab7-46c3-8469-0957d579b014",
"type": "INVOICE_CREATED",
"creationDate": "2024-01-08T12:31:18.271671+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "1b51631e-d6d7-4632-bc8f-c67bd6f52729"
}
{
{
"eventId": "3c63e5da-1bce-4c5c-9dfc-1a206fda69a7",
"type": "INVOICE_UPDATED",
"creationDate": "2024-01-08T12:31:25.469957+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "176cf4e9-4669-473c-a9cb-f102fd6aa2ab",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
}
}
}
{
"eventId": "32cc898a-112f-43fd-921e-be8613d85b73",
"type": "INVOICE_CLOSED",
"creationDate": "2024-01-08T12:31:33.554755+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": true,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "36e1f1c0-b08b-41e1-a35b-bc0942b084f7"
}
{
"eventId": "c3e22524-8677-447f-9c70-caee15bdb31a",
"type": "INVOICE_REOPEN",
"creationDate": "2024-01-08T12:31:38.069325+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": false,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"nextTransactionAttempt": "2024-01-09T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [],
"transfers": [],
"type": "MANUAL"
},
"requestId": "7ef43ab1-2249-43b2-834e-dcad31d609a5"
}
{
"eventId": "23ef2df3-0e6d-4397-b877-aba2acea2ed1",
"type": "INVOICE_TRANSACTION_FAILED",
"creationDate": "2024-01-15T11:59:55.647989+01:00",
"object": {
"additionalData": {},
"amount": 10000,
"attemptCount": 1,
"closed": false,
"creationDate": "2024-01-15T11:59:53.614864+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-15T11:59:53.357382+01:00",
"currency": "EUR",
"customerId": "947a99f7-308c-46a0-b6be-aed82d39a53c",
"invoiceId": "e0909ca3-a337-43ce-9769-d65e927b3a47",
"invoiceItemId": "0c153918-5128-4ecb-8570-7c9f71a500ec",
"quantity": 1,
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"totalAmount": 10000,
"type": "SUBSCRIPTION"
}
],
"nextTransactionAttempt": "2024-01-18T06:00:04+01:00",
"paid": false,
"sddTransactions": [],
"subscriptionId": "55cb6ba8-3d9b-4bc9-96c9-b478b576d306",
"transactions": [
"19b41977-e973-4dd9-846e-5777459196a5"
],
"transfers": [],
"type": "SUBSCRIPTION"
},
"requestId": "1c35bbaf-0f37-44e1-a7e5-c3f10be0a9a4"
}
{
"eventId": "58b1922a-a959-43c3-aeea-784f6970586c",
"type": "INVOICE_TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-08T12:31:48.444350+01:00",
"object": {
"additionalData": {},
"amount": 30000,
"attemptCount": 0,
"closed": true,
"creationDate": "2024-01-08T12:31:18.264645+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"description": "ma description",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItems": [
{
"additionalData": {},
"amount": 10000,
"creationDate": "2024-01-08T12:30:46.131739+01:00",
"currency": "EUR",
"customerId": "06e3819c-9e15-42db-9194-74d5924b53e3",
"invoiceId": "6c031228-131c-453a-8dbf-4623a033c01e",
"invoiceItemId": "c911bfdd-3686-4e5b-8abf-d3c44fa369a3",
"quantity": 3,
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"totalAmount": 30000,
"type": "MANUAL"
}
],
"paid": true,
"sddTransactions": [],
"subscriptionId": "a35ba09e-58ea-4d5c-8207-1a5d11f32fd3",
"transactions": [
"67cfc05b-d06c-4f2b-8aec-2033e0c61478"
],
"transfers": [],
"type": "MANUAL"
},
"requestId": "01fb7049-bd27-4ec0-846d-605c352bd2f9"
}
{
"eventId": "4774dddc-7163-40f9-a6e0-72cd52abad19",
"type": "TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-05T14:43:21.487036+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 3600000,
"amountRefunded": 0,
"archivingReference": "5MS7NOWFGWSR",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "0ee6bd7e-3e74-454d-a62b-120db043714d",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-05T14:43:21.355125+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:43:19.909652+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "899287b0-a0a5-413c-8be8-bc3d794ba96a",
"order": {
"cardholderEmail": "GDU-Solon40@gmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 3600000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Clemens7@yahoo.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "aa42bd28-5a34-47e4-87b0-3d25375be798",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "3d82de99-2346-4eef-a30b-68e7efe5acd1"
}
{
"eventId": "ecd3fead-ccb1-44e4-b41b-5806b78dc5a5",
"type": "TRANSACTION_CAPTURED",
"creationDate": "2024-01-05T14:43:21.513924+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 3600000,
"amountRefunded": 0,
"archivingReference": "5MS7NOWFGWSR",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "0ee6bd7e-3e74-454d-a62b-120db043714d",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-05T14:43:21.355125+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:43:19.909652+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "899287b0-a0a5-413c-8be8-bc3d794ba96a",
"order": {
"cardholderEmail": "GDU-Solon40@gmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 3600000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Clemens7@yahoo.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "aa42bd28-5a34-47e4-87b0-3d25375be798",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "3d82de99-2346-4eef-a30b-68e7efe5acd1"
}
{
"eventId": "0eeacc49-8957-4910-925f-d633505f23b0",
"type": "TRANSACTION_FAILED",
"creationDate": "2024-01-05T14:46:59.392077+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 0,
"amountRefunded": 0,
"archivingReference": "9GUGCIZEU0VN",
"authorizationMovementId": "7ed9258a-ee75-4705-90f3-678973d2402e",
"authorizationStatus": "FAILURE",
"bankCode": "51",
"bankMessage": "Simulation : Insufficient Funds",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "30e49b6e-ed07-4b43-8862-2abd2f181678",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:46:39.151564+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "7032968c1a882c155b3d8014297daabaa7133680",
"first6": "400000",
"infoId": "90eaf823-e2e7-4757-845a-b966bbab03c6",
"last4": "0077",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:46:58.190985+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"order": {
"cardholderEmail": "GDU-Yvette5@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Buck_Gislason@hotmail.com",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "d530cdbe-b9fc-481b-b99d-8ce0db75deb4",
"transactionStatus": "FAILURE",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "c120a3c0-764a-4c7e-a705-4721784212c7"
}
{
"eventId": "9a93ea00-42cc-4555-ad29-24daa2ec5fbe",
"type": "TRANSACTION_EXPIRED",
"creationDate": "2024-02-01T00:30:07.148454+01:00",
"object": {
"transactionId": "87b40109-0de5-454d-acf4-dfa51f23d15b",
"creationDate": "2024-01-30T14:20:47.062768+01:00",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"merchantTransactionId": null,
"archivingReference": "YB6J5BGOC4TF",
"transactionStatus": "SUCCESS",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"authorizationCode": "000000",
"riskScore": null,
"source": "EC",
"description": null,
"currency": "EUR",
"payoutCurrency": "EUR",
"payoutAmount": null,
"commission": null,
"fee": 0,
"amount": 36000,
"partialAuthorization": false,
"partialAuthorized": false,
"partialAuthorizedAmount": null,
"totalAmount": 36000,
"card": {
"cardId": "4970cff8-a3eb-4b7a-9f8e-6a4156c08cec",
"creationDate": "2024-01-30T14:20:45.679621+01:00",
"customerId": null,
"cardTokenId": null,
"infoId": null,
"merchantCardId": null,
"commercialBrand": "VISA",
"first6": "403203",
"last4": "3001",
"expirationMonth": 12,
"expirationYear": 2025,
"country": "FRA",
"cardholderName": null,
"cardholderEmail": null,
"description": null,
"fingerprint": "a90fedc230c187acb2e4d6b8a3e3237044931beb",
"cardType": "UNKNOWN",
"region": "EUROPE",
"productType": "UNKNOWN",
"europeanEconomicArea": true,
"check": false,
"additionalData": {}
},
"cardMerchantToken": null,
"captureStatus": "EXPIRED",
"amountCaptured": 0,
"refunded": true,
"amountRefunded": 0,
"refunds": [],
"endUserIp": "8.8.8.8",
"endUserLanguage": "fre",
"browserUserAgent": null,
"browserAcceptLanguage": null,
"country": null,
"receiptEmail": null,
"transactiontransfers": [],
"transferGroup": null,
"residualAmount": null,
"order": {
"firstName": null,
"lastName": null,
"addressLine1": null,
"addressLine2": null,
"addressLine3": null,
"addressLine4": null,
"postalCode": null,
"city": null,
"country": null,
"email": null,
"phone": null,
"cardCountry": "FRA",
"cardholderName": null,
"cardholderEmail": null
},
"dispute": null,
"cardPresent": {
"cardSequenceNumber": null,
"cardEntryMode": null,
"pinEntryCapability": null,
"transactionSequenceCounter": null,
"uniqueTerminalId": null,
"cardholderSignatureImage": null,
"gpsLatitude": null,
"gpsLongitude": null,
"cardholderPhoto": null,
"cardAcceptorTerminalId": null,
"offlinePinIndicator": null,
"ucatTerminalIndicator": null,
"iccData": null,
"iccDataResponse": null
},
"clearingNumber": null,
"merchantCategoryCode": "1711",
"withCvv": true,
"arn": "123456",
"authorizationCancellationDate": null,
"customerId": null,
"captureDate": null,
"clearingDate": null,
"captureCancellationDate": null,
"enrollmentId": null,
"movementId": null,
"authorizationMovementId": "258d16f5-3f5f-401d-8f5b-c9ff9d00f28d",
"cancelMovementId": null,
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"invoiceId": null,
"installmentId": null,
"customAcceptanceData": {},
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"3ds": false
},
"requestId": "fcf800bb-1748-4d23-9ce7-121c5f14a51b"
}
{
"eventId": "2ed7535a-8d07-4502-aea8-d755c5584962",
"type": "TRANSACTION_CANCELED",
"creationDate": "2024-01-11T14:51:53.615072+01:00",
"object": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "TSMEGRM4XQSN",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "82dbefb7-2a49-4cf9-a10a-953e0fefd89b",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"cancelMovementId": "36238731-363a-4f30-913e-7a9b9defdd33",
"captureCancellationDate": "2024-01-11T14:51:53.583865+01:00",
"captureDate": "2024-01-11T14:50:33.400938+01:00",
"captureStatus": "CANCELED",
"card": {
"additionalData": {},
"cardId": "0f72740b-3a97-436b-aa78-9ac30308d404",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:50:31.216307+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:50:32.194359+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "36d934c8-de2f-43df-be49-a4f058c6c0ba",
"order": {
"addressLine1": "ADRESSE",
"cardCountry": "FRA",
"city": "PARIS",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "2fbdd1ad-99e1-4fb6-a5f9-06239d7ef1a1",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-15",
"fee": 0,
"merchantTransferId": "MRI_CODE"
}
],
"withCvv": true
},
"requestId": "2631c3f5-65cb-441f-9cb7-14dcf2c8d128"
}
{
"eventId": "36e7853b-eecf-43d2-99ec-80aa5b26b46f",
"type": "TRANSACTION_DISPUTED",
"creationDate": "2024-01-05T15:16:28.316447+01:00",
"object": {
"additionalData": {},
"amount": 36000,
"amountCaptured": 36000,
"amountRefunded": 0,
"archivingReference": "AULQKEG8VFZV",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "a7caf3b3-4d60-412e-9536-8b31e7fa2b99",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-04T15:04:14.560777+01:00",
"captureStatus": "CLEARED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"clearingDate": "2024-01-05",
"clearingNumber": "008194",
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T15:04:13.275733+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"dispute": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_NOTICED",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116"
},
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "15560735-1636-4a01-9a15-89eab54ef9e1",
"order": {
"cardholderEmail": "GDU-Dasia77@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Benton_Hamill8@gmail.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 36000,
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": false
},
"requestId": "29ae33a7-bcd3-405f-ab21-485729b980aa"
}
{
"eventId": "d489a6be-9b6d-43fa-86e3-c5d26437aac3",
"type": "TRANSACTION_FRAUDULENT",
"creationDate": "2024-01-05T16:34:30.947564+01:00",
"object": {
"additionalData": {},
"amount": 500,
"amountCaptured": 0,
"amountRefunded": 0,
"authorizationStatus": "FRAUD",
"bankMessage": "PAN in BLACKLIST [532509xxx0008]",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T16:33:13.699153+01:00",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "dabeaee8-1f45-438e-b9c7-37bbce92315e",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"endUserIp": "245.100.1.15",
"merchantTransactionId": "MIP_001",
"order": {
"cardCountry": "FRA",
"cardholderEmail": "gduhamel@centralpay.eu",
"email": "gduhamel@centralpay.eu",
"firstName": "CECELIA",
"lastName": "EBERT"
},
"partialAuthorization": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "gduhamel@centralpay.eu",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 500,
"transactionId": "f061fa00-8494-4eca-b9d1-f54d36125d7d",
"transactionStatus": "FRAUD",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "47c8329d-b686-4dc0-ad21-941e4ec2945d"
}
{
"eventId": "21f8a3b1-1fab-4071-9f75-ef36d10a6572",
"type": "TRANSACTION_REFUNDED",
"creationDate": "2024-01-10T09:35:28.762354+01:00",
"object": {
"additionalData": {},
"amount": 36000,
"amountCaptured": 36000,
"amountRefunded": 36000,
"archivingReference": "YNADK4W3G2EK",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "679d6b91-bba5-43fa-a444-b3aa7fb2ad2f",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-04T15:04:11.419479+01:00",
"captureStatus": "CLEARED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"clearingDate": "2024-01-05",
"clearingNumber": "008194",
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T15:04:10.135397+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "656895c7-e7a2-4b7d-8920-0bb78ea45f3a",
"order": {
"cardholderEmail": "GDU-Martina_Ondricka@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Justyn98@gmail.com",
"refunded": true,
"refunds": [
{
"additionalData": {},
"amount": 36000,
"commission": 0,
"creationDate": "2024-01-10T09:35:28.448559+01:00",
"currency": "EUR",
"description": "GDU-testapi",
"fee": 0,
"movementId": "c42ea27a-6d74-4c4b-b170-e17762916c79",
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"refundId": "9bf06654-c023-4481-8e6a-138bb5f13777",
"status": "UNCLEARED",
"transactionId": "2a06bfae-51f5-4dd7-945b-47631c16cb9c"
}
],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 36000,
"transactionId": "2a06bfae-51f5-4dd7-945b-47631c16cb9c",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": false
},
"requestId": "794c20b2-4a0c-4d9d-a580-af5544c11120"
}
{
"eventId": "eaf9366e-cd66-4ab9-ad23-09ed2ec5972d",
"type": "TRANSACTION_UPDATED",
"creationDate": "2024-01-11T14:54:35.830032+01:00",
"object": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "FLS2TYH3HJ5G",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "02e0e9ec-77f6-4a75-9732-57a0d0844354",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"captureDate": "2024-01-11T14:53:18.688598+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "180c71b5-9384-4ea5-9452-b190d4afc542",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:53:17.634328+01:00",
"europeanEconomicArea": true,
"expirationMonth": 1,
"expirationYear": 2024,
"fingerprint": "9e6b6fc8e48c4ee716efb06762e726c0108e5e8d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:53:17.576925+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "3dbd2c18-1110-496b-9cd2-1e7b7568fc00",
"order": {
"cardCountry": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "test@gmail.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "8d08a5b1-413e-46d8-8e8e-6da8c0d5025b",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-13",
"fee": 0
}
],
"withCvv": true
},
"requestId": "6b85d1b7-853a-420e-a500-62aac18840c1",
"objectBeforeUpdate": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "FLS2TYH3HJ5G",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "02e0e9ec-77f6-4a75-9732-57a0d0844354",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"captureDate": "2024-01-11T14:53:18.688598+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "180c71b5-9384-4ea5-9452-b190d4afc542",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:53:17.634328+01:00",
"europeanEconomicArea": true,
"expirationMonth": 1,
"expirationYear": 2024,
"fingerprint": "9e6b6fc8e48c4ee716efb06762e726c0108e5e8d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:53:17.576925+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "3dbd2c18-1110-496b-9cd2-1e7b7568fc00",
"order": {
"cardCountry": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "8d08a5b1-413e-46d8-8e8e-6da8c0d5025b",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-13",
"fee": 0
}
],
"withCvv": true
}
}
{
"eventId": "4774dddc-7163-40f9-a6e0-72cd52abad19",
"type": "TRANSACTION_SUCCEEDED",
"creationDate": "2024-01-05T14:43:21.487036+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 3600000,
"amountRefunded": 0,
"archivingReference": "5MS7NOWFGWSR",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "0ee6bd7e-3e74-454d-a62b-120db043714d",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-05T14:43:21.355125+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:43:19.909652+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "899287b0-a0a5-413c-8be8-bc3d794ba96a",
"order": {
"cardholderEmail": "GDU-Solon40@gmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 3600000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Clemens7@yahoo.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "aa42bd28-5a34-47e4-87b0-3d25375be798",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "3d82de99-2346-4eef-a30b-68e7efe5acd1"
}
{
"eventId": "ecd3fead-ccb1-44e4-b41b-5806b78dc5a5",
"type": "TRANSACTION_CAPTURED",
"creationDate": "2024-01-05T14:43:21.513924+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 3600000,
"amountRefunded": 0,
"archivingReference": "5MS7NOWFGWSR",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "0ee6bd7e-3e74-454d-a62b-120db043714d",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-05T14:43:21.355125+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:43:19.909652+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "899287b0-a0a5-413c-8be8-bc3d794ba96a",
"order": {
"cardholderEmail": "GDU-Solon40@gmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 3600000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Clemens7@yahoo.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "aa42bd28-5a34-47e4-87b0-3d25375be798",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "3d82de99-2346-4eef-a30b-68e7efe5acd1"
}
{
"eventId": "0eeacc49-8957-4910-925f-d633505f23b0",
"type": "TRANSACTION_FAILED",
"creationDate": "2024-01-05T14:46:59.392077+01:00",
"object": {
"additionalData": {},
"amount": 3600000,
"amountCaptured": 0,
"amountRefunded": 0,
"archivingReference": "9GUGCIZEU0VN",
"authorizationMovementId": "7ed9258a-ee75-4705-90f3-678973d2402e",
"authorizationStatus": "FAILURE",
"bankCode": "51",
"bankMessage": "Simulation : Insufficient Funds",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "30e49b6e-ed07-4b43-8862-2abd2f181678",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-05T14:46:39.151564+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "7032968c1a882c155b3d8014297daabaa7133680",
"first6": "400000",
"infoId": "90eaf823-e2e7-4757-845a-b966bbab03c6",
"last4": "0077",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T14:46:58.190985+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"order": {
"cardholderEmail": "GDU-Yvette5@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Buck_Gislason@hotmail.com",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 3600000,
"transactionId": "d530cdbe-b9fc-481b-b99d-8ce0db75deb4",
"transactionStatus": "FAILURE",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "c120a3c0-764a-4c7e-a705-4721784212c7"
}
{
"eventId": "9a93ea00-42cc-4555-ad29-24daa2ec5fbe",
"type": "TRANSACTION_EXPIRED",
"creationDate": "2024-02-01T00:30:07.148454+01:00",
"object": {
"transactionId": "87b40109-0de5-454d-acf4-dfa51f23d15b",
"creationDate": "2024-01-30T14:20:47.062768+01:00",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"merchantTransactionId": null,
"archivingReference": "YB6J5BGOC4TF",
"transactionStatus": "SUCCESS",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"authorizationCode": "000000",
"riskScore": null,
"source": "EC",
"description": null,
"currency": "EUR",
"payoutCurrency": "EUR",
"payoutAmount": null,
"commission": null,
"fee": 0,
"amount": 36000,
"partialAuthorization": false,
"partialAuthorized": false,
"partialAuthorizedAmount": null,
"totalAmount": 36000,
"card": {
"cardId": "4970cff8-a3eb-4b7a-9f8e-6a4156c08cec",
"creationDate": "2024-01-30T14:20:45.679621+01:00",
"customerId": null,
"cardTokenId": null,
"infoId": null,
"merchantCardId": null,
"commercialBrand": "VISA",
"first6": "403203",
"last4": "3001",
"expirationMonth": 12,
"expirationYear": 2025,
"country": "FRA",
"cardholderName": null,
"cardholderEmail": null,
"description": null,
"fingerprint": "a90fedc230c187acb2e4d6b8a3e3237044931beb",
"cardType": "UNKNOWN",
"region": "EUROPE",
"productType": "UNKNOWN",
"europeanEconomicArea": true,
"check": false,
"additionalData": {}
},
"cardMerchantToken": null,
"captureStatus": "EXPIRED",
"amountCaptured": 0,
"refunded": true,
"amountRefunded": 0,
"refunds": [],
"endUserIp": "8.8.8.8",
"endUserLanguage": "fre",
"browserUserAgent": null,
"browserAcceptLanguage": null,
"country": null,
"receiptEmail": null,
"transactiontransfers": [],
"transferGroup": null,
"residualAmount": null,
"order": {
"firstName": null,
"lastName": null,
"addressLine1": null,
"addressLine2": null,
"addressLine3": null,
"addressLine4": null,
"postalCode": null,
"city": null,
"country": null,
"email": null,
"phone": null,
"cardCountry": "FRA",
"cardholderName": null,
"cardholderEmail": null
},
"dispute": null,
"cardPresent": {
"cardSequenceNumber": null,
"cardEntryMode": null,
"pinEntryCapability": null,
"transactionSequenceCounter": null,
"uniqueTerminalId": null,
"cardholderSignatureImage": null,
"gpsLatitude": null,
"gpsLongitude": null,
"cardholderPhoto": null,
"cardAcceptorTerminalId": null,
"offlinePinIndicator": null,
"ucatTerminalIndicator": null,
"iccData": null,
"iccDataResponse": null
},
"clearingNumber": null,
"merchantCategoryCode": "1711",
"withCvv": true,
"arn": "123456",
"authorizationCancellationDate": null,
"customerId": null,
"captureDate": null,
"clearingDate": null,
"captureCancellationDate": null,
"enrollmentId": null,
"movementId": null,
"authorizationMovementId": "258d16f5-3f5f-401d-8f5b-c9ff9d00f28d",
"cancelMovementId": null,
"paymentRequestBreakdownId": null,
"paymentRequestId": null,
"invoiceId": null,
"installmentId": null,
"customAcceptanceData": {},
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"3ds": false
},
"requestId": "fcf800bb-1748-4d23-9ce7-121c5f14a51b"
}
{
"eventId": "2ed7535a-8d07-4502-aea8-d755c5584962",
"type": "TRANSACTION_CANCELED",
"creationDate": "2024-01-11T14:51:53.615072+01:00",
"object": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "TSMEGRM4XQSN",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "82dbefb7-2a49-4cf9-a10a-953e0fefd89b",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"cancelMovementId": "36238731-363a-4f30-913e-7a9b9defdd33",
"captureCancellationDate": "2024-01-11T14:51:53.583865+01:00",
"captureDate": "2024-01-11T14:50:33.400938+01:00",
"captureStatus": "CANCELED",
"card": {
"additionalData": {},
"cardId": "0f72740b-3a97-436b-aa78-9ac30308d404",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:50:31.216307+01:00",
"europeanEconomicArea": true,
"expirationMonth": 12,
"expirationYear": 2026,
"fingerprint": "31e7053d8ee3f13b4f391c989d83aaaa7771450d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:50:32.194359+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "36d934c8-de2f-43df-be49-a4f058c6c0ba",
"order": {
"addressLine1": "ADRESSE",
"cardCountry": "FRA",
"city": "PARIS",
"country": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "2fbdd1ad-99e1-4fb6-a5f9-06239d7ef1a1",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-15",
"fee": 0,
"merchantTransferId": "MRI_CODE"
}
],
"withCvv": true
},
"requestId": "2631c3f5-65cb-441f-9cb7-14dcf2c8d128"
}
{
"eventId": "36e7853b-eecf-43d2-99ec-80aa5b26b46f",
"type": "TRANSACTION_DISPUTED",
"creationDate": "2024-01-05T15:16:28.316447+01:00",
"object": {
"additionalData": {},
"amount": 36000,
"amountCaptured": 36000,
"amountRefunded": 0,
"archivingReference": "AULQKEG8VFZV",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "a7caf3b3-4d60-412e-9536-8b31e7fa2b99",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-04T15:04:14.560777+01:00",
"captureStatus": "CLEARED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"clearingDate": "2024-01-05",
"clearingNumber": "008194",
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T15:04:13.275733+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"dispute": {
"additionalData": {},
"amount": 10,
"creationDate": "2024-01-05T15:16:27.776882+01:00",
"currency": "EUR",
"disputeDate": "2021-03-18",
"disputeId": "896304e9-b937-443a-ba59-3ccc99931b00",
"fee": 0,
"movementId": "09e2b390-a5a6-4926-a5ad-41c96bd38cea",
"reason": "FRAUDULENT",
"status": "CHARGEBACK_NOTICED",
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116"
},
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "15560735-1636-4a01-9a15-89eab54ef9e1",
"order": {
"cardholderEmail": "GDU-Dasia77@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Benton_Hamill8@gmail.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 36000,
"transactionId": "8940d775-cb9c-46e4-ab5a-c5c3ea7c3116",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": false
},
"requestId": "29ae33a7-bcd3-405f-ab21-485729b980aa"
}
{
"eventId": "d489a6be-9b6d-43fa-86e3-c5d26437aac3",
"type": "TRANSACTION_FRAUDULENT",
"creationDate": "2024-01-05T16:34:30.947564+01:00",
"object": {
"additionalData": {},
"amount": 500,
"amountCaptured": 0,
"amountRefunded": 0,
"authorizationStatus": "FRAUD",
"bankMessage": "PAN in BLACKLIST [532509xxx0008]",
"captureStatus": "UNCAPTURED",
"card": {
"additionalData": {},
"cardId": "4680d102-96b0-4fba-b00c-3375ee610fc7",
"cardType": "DEBIT",
"cardholderEmail": "gduhamel@centralpay.eu",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T16:33:13.699153+01:00",
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "dabeaee8-1f45-438e-b9c7-37bbce92315e",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-05T16:34:30.385545+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "33c36fb3-fec8-4930-9cb6-32e2b76d61c9",
"endUserIp": "245.100.1.15",
"merchantTransactionId": "MIP_001",
"order": {
"cardCountry": "FRA",
"cardholderEmail": "gduhamel@centralpay.eu",
"email": "gduhamel@centralpay.eu",
"firstName": "CECELIA",
"lastName": "EBERT"
},
"partialAuthorization": false,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "gduhamel@centralpay.eu",
"refunded": false,
"refunds": [],
"source": "EC",
"threeDSecure": false,
"totalAmount": 500,
"transactionId": "f061fa00-8494-4eca-b9d1-f54d36125d7d",
"transactionStatus": "FRAUD",
"transactiontransfers": [],
"withCvv": true
},
"requestId": "47c8329d-b686-4dc0-ad21-941e4ec2945d"
}
{
"eventId": "21f8a3b1-1fab-4071-9f75-ef36d10a6572",
"type": "TRANSACTION_REFUNDED",
"creationDate": "2024-01-10T09:35:28.762354+01:00",
"object": {
"additionalData": {},
"amount": 36000,
"amountCaptured": 36000,
"amountRefunded": 36000,
"archivingReference": "YNADK4W3G2EK",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "679d6b91-bba5-43fa-a444-b3aa7fb2ad2f",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"browserAcceptLanguage": "en_US",
"browserUserAgent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36",
"captureDate": "2024-01-04T15:04:11.419479+01:00",
"captureStatus": "CLEARED",
"card": {
"additionalData": {},
"cardId": "9a5602f8-ef06-4c00-ab62-c77f8a374eb2",
"cardType": "DEBIT",
"cardholderEmail": "test@gmail.com",
"cardholderName": "MARIE ANNE",
"check": true,
"commercialBrand": "MASTERCARD",
"country": "FRA",
"creationDate": "2024-01-05T12:52:41.054394+01:00",
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"europeanEconomicArea": true,
"expirationMonth": 9,
"expirationYear": 2035,
"fingerprint": "d409203bdcc673d1c527258a16c87cdad8767e1f",
"first6": "532509",
"infoId": "fc8b5c60-6044-41a6-8074-ed9499c245a5",
"last4": "0008",
"productType": "CORPORATE",
"region": "EUROPE"
},
"cardPresent": {},
"clearingDate": "2024-01-05",
"clearingNumber": "008194",
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"country": "FRA",
"creationDate": "2024-01-05T15:04:10.135397+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"customerId": "1646e7fa-8274-48c0-9883-022c2e33fb22",
"endUserIp": "245.100.1.15",
"endUserLanguage": "fre",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "656895c7-e7a2-4b7d-8920-0bb78ea45f3a",
"order": {
"cardholderEmail": "GDU-Martina_Ondricka@hotmail.com",
"country": "FRA"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "GDU-Justyn98@gmail.com",
"refunded": true,
"refunds": [
{
"additionalData": {},
"amount": 36000,
"commission": 0,
"creationDate": "2024-01-10T09:35:28.448559+01:00",
"currency": "EUR",
"description": "GDU-testapi",
"fee": 0,
"movementId": "c42ea27a-6d74-4c4b-b170-e17762916c79",
"payoutAmount": 36000,
"payoutCurrency": "EUR",
"refundId": "9bf06654-c023-4481-8e6a-138bb5f13777",
"status": "UNCLEARED",
"transactionId": "2a06bfae-51f5-4dd7-945b-47631c16cb9c"
}
],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 36000,
"transactionId": "2a06bfae-51f5-4dd7-945b-47631c16cb9c",
"transactionStatus": "SUCCESS",
"transactiontransfers": [],
"withCvv": false
},
"requestId": "794c20b2-4a0c-4d9d-a580-af5544c11120"
}
{
"eventId": "eaf9366e-cd66-4ab9-ad23-09ed2ec5972d",
"type": "TRANSACTION_UPDATED",
"creationDate": "2024-01-11T14:54:35.830032+01:00",
"object": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "FLS2TYH3HJ5G",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "02e0e9ec-77f6-4a75-9732-57a0d0844354",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"captureDate": "2024-01-11T14:53:18.688598+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "180c71b5-9384-4ea5-9452-b190d4afc542",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:53:17.634328+01:00",
"europeanEconomicArea": true,
"expirationMonth": 1,
"expirationYear": 2024,
"fingerprint": "9e6b6fc8e48c4ee716efb06762e726c0108e5e8d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:53:17.576925+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "3dbd2c18-1110-496b-9cd2-1e7b7568fc00",
"order": {
"cardCountry": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"receiptEmail": "test@gmail.com",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "8d08a5b1-413e-46d8-8e8e-6da8c0d5025b",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-13",
"fee": 0
}
],
"withCvv": true
},
"requestId": "6b85d1b7-853a-420e-a500-62aac18840c1",
"objectBeforeUpdate": {
"additionalData": {
"key1": "value1",
"key2": "value2"
},
"amount": 10,
"amountCaptured": 10,
"amountRefunded": 0,
"archivingReference": "FLS2TYH3HJ5G",
"arn": "123456",
"authorizationCode": "000000",
"authorizationMovementId": "02e0e9ec-77f6-4a75-9732-57a0d0844354",
"authorizationStatus": "SUCCESS",
"bankCode": "0",
"bankMessage": "Simulation : Transaction Approved",
"captureDate": "2024-01-11T14:53:18.688598+01:00",
"captureStatus": "CAPTURED",
"card": {
"additionalData": {},
"cardId": "180c71b5-9384-4ea5-9452-b190d4afc542",
"cardType": "DEBIT",
"check": false,
"commercialBrand": "VISA",
"country": "FRA",
"creationDate": "2024-01-11T14:53:17.634328+01:00",
"europeanEconomicArea": true,
"expirationMonth": 1,
"expirationYear": 2024,
"fingerprint": "9e6b6fc8e48c4ee716efb06762e726c0108e5e8d",
"first6": "400000",
"last4": "0002",
"productType": "UNKNOWN",
"region": "EUROPE"
},
"cardPresent": {},
"commission": 0,
"contractId": "a674d481-4805-4a66-915a-67956efca36f",
"creationDate": "2024-01-11T14:53:17.576925+01:00",
"currency": "EUR",
"customAcceptanceData": {},
"endUserIp": "245.100.1.15",
"fee": 0,
"merchantCategoryCode": "1711",
"movementId": "3dbd2c18-1110-496b-9cd2-1e7b7568fc00",
"order": {
"cardCountry": "FRA",
"firstName": "MANDATORY",
"lastName": "MANDATORY"
},
"partialAuthorization": false,
"partialAuthorized": false,
"payoutAmount": 10,
"payoutCurrency": "EUR",
"pointOfSaleId": "7d99a970-cc26-4de8-aa5d-d9ebf4088247",
"refunded": false,
"refunds": [],
"residualAmount": 0,
"source": "EC",
"threeDSecure": false,
"totalAmount": 10,
"transactionId": "8d08a5b1-413e-46d8-8e8e-6da8c0d5025b",
"transactionStatus": "SUCCESS",
"transactiontransfers": [
{
"amount": 1,
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2024-01-13",
"fee": 0
}
],
"withCvv": true
}
}
{
"eventId": "9bd04039-7b33-4553-af86-64a6e925eef9",
"type": "TRANSFERREVERSAL_SUCCEEDED",
"creationDate": "2024-01-16T11:11:40.720817+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-16T11:11:40.611318+01:00",
"currency": "EUR",
"description": "Test",
"fee": 0,
"merchantTransferReversalId": "test",
"movementId": "e34b6833-7b32-4fde-993a-b904f8f3aeae",
"net": 140,
"refundFee": true,
"status": "TRANSFERRED",
"transferId": "e3a45ca4-49a9-4681-bc06-be9ab6dd7d79",
"transferReversalId": "bb47ad7b-4112-4ad5-abf3-489d5878d6fd"
},
"requestId": "7e593b04-58c3-4e0d-b3c6-ec2a6887164e"
}
}
{
"eventId": "8317512a-d7d2-4d6d-a61a-644afb7537fb",
"type": "TRANSFERREVERSAL_UPDATED",
"creationDate": "2024-01-16T11:18:00.682451+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-16T11:11:40.611318+01:00",
"currency": "EUR",
"description": "Addeddata",
"fee": 0,
"merchantTransferReversalId": "test",
"movementId": "e34b6833-7b32-4fde-993a-b904f8f3aeae",
"net": 140,
"refundFee": true,
"status": "TRANSFERRED",
"transferId": "e3a45ca4-49a9-4681-bc06-be9ab6dd7d79",
"transferReversalId": "bb47ad7b-4112-4ad5-abf3-489d5878d6fd"
},
"requestId": "3509acf1-39c9-45e5-b1b6-d58ee6639b8d"
}
{
"eventId": "9bd04039-7b33-4553-af86-64a6e925eef9",
"type": "TRANSFERREVERSAL_SUCCEEDED",
"creationDate": "2024-01-16T11:11:40.720817+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-16T11:11:40.611318+01:00",
"currency": "EUR",
"description": "Test",
"fee": 0,
"merchantTransferReversalId": "test",
"movementId": "e34b6833-7b32-4fde-993a-b904f8f3aeae",
"net": 140,
"refundFee": true,
"status": "TRANSFERRED",
"transferId": "e3a45ca4-49a9-4681-bc06-be9ab6dd7d79",
"transferReversalId": "bb47ad7b-4112-4ad5-abf3-489d5878d6fd"
},
"requestId": "7e593b04-58c3-4e0d-b3c6-ec2a6887164e"
}
}
{
"eventId": "8317512a-d7d2-4d6d-a61a-644afb7537fb",
"type": "TRANSFERREVERSAL_UPDATED",
"creationDate": "2024-01-16T11:18:00.682451+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-16T11:11:40.611318+01:00",
"currency": "EUR",
"description": "Addeddata",
"fee": 0,
"merchantTransferReversalId": "test",
"movementId": "e34b6833-7b32-4fde-993a-b904f8f3aeae",
"net": 140,
"refundFee": true,
"status": "TRANSFERRED",
"transferId": "e3a45ca4-49a9-4681-bc06-be9ab6dd7d79",
"transferReversalId": "bb47ad7b-4112-4ad5-abf3-489d5878d6fd"
},
"requestId": "3509acf1-39c9-45e5-b1b6-d58ee6639b8d"
}
{
{
"eventId": "a1147178-8197-46d7-ba6d-433f71a1b7f5",
"type": "TRANSFER_SUCCEEDED",
"creationDate": "2024-01-08T14:33:25.439719+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_MRI",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
},
"requestId": "6d21911b-40bb-4259-aef9-39c616d60aa4"
}
}
{
{
"eventId": "356e4dff-4146-47d5-9db9-3226585cafc1",
"type": "TRANSFER_UPDATED",
"creationDate": "2024-01-08T14:38:40.555843+01:00",
"object": {
"additionalData": {
"Key1": "val2"
},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "transfer1",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "TEST_002",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferGroup": "TransferGroup_0002",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
},
"requestId": "e7b6b976-a0ae-45dc-a018-f6c651a7f559",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_MRI",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
}
}
}
{
"eventId": "d1a35d33-87b7-4672-8e49-495cd117f45b",
"type": "TRANSFER_CANCELED",
"creationDate": "2024-01-16T11:34:40.698751+01:00",
"object": {
"additionalData": {},
"amount": 140,
"cancelMovementId": "e66acfa2-60c4-4eec-8bfe-f1571318a667",
"cancellationDate": "2024-01-16T11:34:40.691168+01:00",
"creationDate": "2024-01-16T11:34:05.280812+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2035-12-23",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_GDU",
"movementId": "98c79326-53e5-4b71-8ef6-4b1344c428a4",
"net": 140,
"rate": 1,
"reversed": false,
"status": "CANCEL",
"toCurrency": "EUR",
"transferId": "fd4aa0f5-69d5-4b79-b6df-c99dab33d9ee",
"transferReversals": []
},
"requestId": "35b87d6e-41dd-4a5e-b1a2-5347b6fa1eba"
}
{
{
"eventId": "a1147178-8197-46d7-ba6d-433f71a1b7f5",
"type": "TRANSFER_SUCCEEDED",
"creationDate": "2024-01-08T14:33:25.439719+01:00",
"object": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_MRI",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
},
"requestId": "6d21911b-40bb-4259-aef9-39c616d60aa4"
}
}
{
{
"eventId": "356e4dff-4146-47d5-9db9-3226585cafc1",
"type": "TRANSFER_UPDATED",
"creationDate": "2024-01-08T14:38:40.555843+01:00",
"object": {
"additionalData": {
"Key1": "val2"
},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "transfer1",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "TEST_002",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferGroup": "TransferGroup_0002",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
},
"requestId": "e7b6b976-a0ae-45dc-a018-f6c651a7f559",
"objectBeforeUpdate": {
"additionalData": {},
"amount": 140,
"creationDate": "2024-01-08T14:33:25.050153+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "ccf841d8-b066-4e96-adc7-fa6414cfe598",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_MRI",
"movementId": "20452a9f-6055-462c-8da5-f351cc0a1437",
"net": 140,
"rate": 1,
"reversed": false,
"status": "TRANSFERRED",
"toCurrency": "GTH",
"transferId": "c8d751cc-da30-4dbe-9e57-acf7731bb3f5",
"transferReversals": []
}
}
}
{
"eventId": "d1a35d33-87b7-4672-8e49-495cd117f45b",
"type": "TRANSFER_CANCELED",
"creationDate": "2024-01-16T11:34:40.698751+01:00",
"object": {
"additionalData": {},
"amount": 140,
"cancelMovementId": "e66acfa2-60c4-4eec-8bfe-f1571318a667",
"cancellationDate": "2024-01-16T11:34:40.691168+01:00",
"creationDate": "2024-01-16T11:34:05.280812+01:00",
"currency": "EUR",
"description": "Vente de XxX",
"destinationWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"emissionWalletId": "a00f7a69-b8c3-44b1-a8b2-aa508128b050",
"escrowDate": "2035-12-23",
"exchangedAmount": 140,
"exchangedFee": 0,
"exchangedNet": 140,
"fee": 0,
"merchantTransferId": "IDENTIFIANT_GDU",
"movementId": "98c79326-53e5-4b71-8ef6-4b1344c428a4",
"net": 140,
"rate": 1,
"reversed": false,
"status": "CANCEL",
"toCurrency": "EUR",
"transferId": "fd4aa0f5-69d5-4b79-b6df-c99dab33d9ee",
"transferReversals": []
},
"requestId": "35b87d6e-41dd-4a5e-b1a2-5347b6fa1eba"
}
The movement are all the bank operation that happen in your wallet, with amount, fee and source associated.
GET https://test-api.centralpay.net/v2/rest/movement/{{movementId}}
OBJ Json wallet type
curl -v https://test-api.centralpay.net/v2/rest/movement/2cec85cc-5501-4516-9bdc-a31bdd47d79b \
-u 'doctest:4I9HJRTd'
{
"movementId": "2cec85cc-5501-4516-9bdc-a31bdd47d79b",
"creationDate": "2020-10-06T12:45:50.756330+02:00",
"expectedAvailabilityDate": "2020-10-08",
"availableDate": "2020-10-08",
"sourceId": "e0a3e218-4f13-4d85-9510-744ae8f0a0d6",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1000,
"fee": 0,
"net": 1000,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
}
This service allows you to retrieve the movement in your account with the movement ID. All the paramers used to search must be passed in the form of queries parameters.
movementId UUID (36) |
CentralPay ID of the movement Required: yes Validation: UUID |
GET https://test-api.centralpay.net/v2/rest/movement/{{movementId}}
OBJ Json wallet type
curl -v https://test-api.centralpay.net/v2/rest/movement/2cec85cc-5501-4516-9bdc-a31bdd47d79b \
-u 'doctest:4I9HJRTd'
{
"movementId": "2cec85cc-5501-4516-9bdc-a31bdd47d79b",
"creationDate": "2020-10-06T12:45:50.756330+02:00",
"expectedAvailabilityDate": "2020-10-08",
"availableDate": "2020-10-08",
"sourceId": "e0a3e218-4f13-4d85-9510-744ae8f0a0d6",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1000,
"fee": 0,
"net": 1000,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
}
GET https://test-api.centralpay.net/v2/rest/movement
List OBJ Json movement type
curl -X GET -v https://test-api.centralpay.net/v2/rest/movement \
-u 'doctest:4I9HJRTd'
{
"list": [
{
"movementId": "0905743b-fa72-4c02-9eb6-1a2a4ccddadb",
"creationDate": "2021-06-22T10:46:11.477123+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "e226e3af-9f69-4123-816f-f2be44ed7858",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1056,
"fee": 0,
"net": 1056,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "657a6852-5f06-4f3c-88c7-47180e645730",
"creationDate": "2021-06-22T10:46:11.297052+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "e226e3af-9f69-4123-816f-f2be44ed7858",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": 0,
"net": 0,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "84c3d709-854d-4571-b191-9f6b2e8d8826",
"creationDate": "2021-06-22T10:45:55.570129+02:00",
"expectedAvailabilityDate": "2021-06-22",
"availableDate": "2021-06-22",
"sourceId": "a6e39da7-e5f2-43dd-8b11-641f7fa573ff",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "CUSTOMER_CREATION",
"description": null,
"customDescription": null
},
{
"movementId": "874bf780-0394-40bd-89e5-ca4e40b50327",
"creationDate": "2021-06-22T10:01:37.555356+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "d331a66a-f10d-4a15-b860-d39ed56ef26e",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 35000,
"fee": -5750,
"net": 29250,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "9e60c76c-9fa0-46ab-85e6-5e77f18f520e",
"creationDate": "2021-06-22T10:01:37.346286+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "d331a66a-f10d-4a15-b860-d39ed56ef26e",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "8a69c6f3-3f46-41ab-812d-19e5b69dad17",
"creationDate": "2021-06-22T08:01:38.546367+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "52e0f8a5-3373-4b66-b0e4-5c0d29421db8",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1700,
"fee": -1000,
"net": 700,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "81d1eae7-6a7a-4bbb-98c3-5fb041eb5185",
"creationDate": "2021-06-22T08:01:38.296436+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "52e0f8a5-3373-4b66-b0e4-5c0d29421db8",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "fb1031ac-4b56-4918-a7c9-7dd8c46ba1ae",
"creationDate": "2021-06-19T10:01:52.274770+02:00",
"expectedAvailabilityDate": "2021-06-21",
"availableDate": "2021-06-21",
"sourceId": "2f8ffed0-8fce-4867-bf54-e4d4acad3196",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 35000,
"fee": -5750,
"net": 29250,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "85f57a3f-04c6-4d53-8d31-6e4f68183100",
"creationDate": "2021-06-19T10:01:52.115145+02:00",
"expectedAvailabilityDate": "2021-06-21",
"availableDate": "2021-06-21",
"sourceId": "2f8ffed0-8fce-4867-bf54-e4d4acad3196",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "f36370f4-a9dc-4421-bffd-9024c65db2a7",
"creationDate": "2021-06-18T14:00:07.383521+02:00",
"expectedAvailabilityDate": "2021-06-20",
"availableDate": "2021-06-20",
"sourceId": "c6d4950d-f6e3-4887-88a8-55a1000f5d42",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 5000,
"fee": -1250,
"net": 3750,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
}
],
"totalCount": 56857
}
This function allows you to retrieve all the movements registerered in your account.
currency String (3) |
currency of the movement Required: no |
expectedAvailabilityDateBefore localDate |
Before the expectedAvailabilityDate, this date included.Required: no |
expectedAvailabilityDateAfter localeDate |
After the expectedAvailabilityDate, this date included.Required: no |
availableDateBefore localeDate |
Before the availableDate, this date included.Required: no |
availableDateAfter LocalDate |
After the availableDate, this date included. Required: no |
status Enum MovementStatus |
Arrival date
Required: no Validation: PENDING | PAID | CANCEL
|
type Enum MovementType |
Payout status Required: no Validation: see the different type in the object. Available values : TRANSACTION, AUTHORIZATION, TRANSACTION_CANCEL, REFUND, REFUND_CANCEL, DISPUTE, DISPUTE_WON, TRANSFER, TRANSFER_REVERSAL, PAYOUT, PAYOUT_CANCEL, PAYOUT_REVERSAL, TRANSFER_CANCEL, DEPOSIT, SCT_TRANSACTION, SCT_TRANSACTION_CANCEL, SCT_TRANSACTION_REVERSAL, CREDIT, CREDIT_CANCEL, CUSTOMER_CREATION, SDD_TRANSACTION, SDD_TRANSACTION_CANCEL, SDD_TRANSACTION_REVERSAL |
GET https://test-api.centralpay.net/v2/rest/movement
List OBJ Json movement type
curl -X GET -v https://test-api.centralpay.net/v2/rest/movement \
-u 'doctest:4I9HJRTd'
{
"list": [
{
"movementId": "0905743b-fa72-4c02-9eb6-1a2a4ccddadb",
"creationDate": "2021-06-22T10:46:11.477123+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "e226e3af-9f69-4123-816f-f2be44ed7858",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1056,
"fee": 0,
"net": 1056,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "657a6852-5f06-4f3c-88c7-47180e645730",
"creationDate": "2021-06-22T10:46:11.297052+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "e226e3af-9f69-4123-816f-f2be44ed7858",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": 0,
"net": 0,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "84c3d709-854d-4571-b191-9f6b2e8d8826",
"creationDate": "2021-06-22T10:45:55.570129+02:00",
"expectedAvailabilityDate": "2021-06-22",
"availableDate": "2021-06-22",
"sourceId": "a6e39da7-e5f2-43dd-8b11-641f7fa573ff",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "CUSTOMER_CREATION",
"description": null,
"customDescription": null
},
{
"movementId": "874bf780-0394-40bd-89e5-ca4e40b50327",
"creationDate": "2021-06-22T10:01:37.555356+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "d331a66a-f10d-4a15-b860-d39ed56ef26e",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 35000,
"fee": -5750,
"net": 29250,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "9e60c76c-9fa0-46ab-85e6-5e77f18f520e",
"creationDate": "2021-06-22T10:01:37.346286+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "d331a66a-f10d-4a15-b860-d39ed56ef26e",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "8a69c6f3-3f46-41ab-812d-19e5b69dad17",
"creationDate": "2021-06-22T08:01:38.546367+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "52e0f8a5-3373-4b66-b0e4-5c0d29421db8",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 1700,
"fee": -1000,
"net": 700,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "81d1eae7-6a7a-4bbb-98c3-5fb041eb5185",
"creationDate": "2021-06-22T08:01:38.296436+02:00",
"expectedAvailabilityDate": "2021-06-24",
"availableDate": "2021-06-24",
"sourceId": "52e0f8a5-3373-4b66-b0e4-5c0d29421db8",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "fb1031ac-4b56-4918-a7c9-7dd8c46ba1ae",
"creationDate": "2021-06-19T10:01:52.274770+02:00",
"expectedAvailabilityDate": "2021-06-21",
"availableDate": "2021-06-21",
"sourceId": "2f8ffed0-8fce-4867-bf54-e4d4acad3196",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 35000,
"fee": -5750,
"net": 29250,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
},
{
"movementId": "85f57a3f-04c6-4d53-8d31-6e4f68183100",
"creationDate": "2021-06-19T10:01:52.115145+02:00",
"expectedAvailabilityDate": "2021-06-21",
"availableDate": "2021-06-21",
"sourceId": "2f8ffed0-8fce-4867-bf54-e4d4acad3196",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 0,
"fee": -500,
"net": -500,
"currency": "EUR",
"status": "AVAILABLE",
"type": "AUTHORIZATION",
"description": null,
"customDescription": null
},
{
"movementId": "f36370f4-a9dc-4421-bffd-9024c65db2a7",
"creationDate": "2021-06-18T14:00:07.383521+02:00",
"expectedAvailabilityDate": "2021-06-20",
"availableDate": "2021-06-20",
"sourceId": "c6d4950d-f6e3-4887-88a8-55a1000f5d42",
"walletId": "9b7f18d8-734f-4c72-8792-aea2ecdbdbaa",
"emissionWalletId": null,
"amount": 5000,
"fee": -1250,
"net": 3750,
"currency": "EUR",
"status": "AVAILABLE",
"type": "TRANSACTION",
"description": null,
"customDescription": null
}
],
"totalCount": 56857
}
movementId UUID |
Movement's id |
creationDate LocalDate |
The date of creation of the movement |
currency String (3) |
Currency of movement |
amount Integer |
Gross amount |
fee Integer |
fee |
net Integer |
Net amount |
description String |
Description |
expectedAvailabilityDate LocalDate |
planned date of avaibility |
availableDate LocalDate |
real date of availibility |
status Enum MovementStatus |
Status of the movement Note: PENDING | PAID | CANCEL |
sourceId UUID |
UUID of the original object |
type Enum MovementType |
type of the movement
Note: TRANSACTION | TRANSACTION_CANCEL | REFUND | REFUND_CANCEL | DISPUTE | DISPUTE_WON | TRANSFER | TRANSFER_CANCEL | TRANSFER_REVERSAL | PAYOUT | PAYOUT_CANCEL | PAYOUT_FAILURE | DEPOSIT | WIRE_TRANSFER | WIRE_TRANSFER_CANCEL | CREDIT | CREDIT_CANCEL| CUSTOMER_CREATION | AUTHORIZATION
|
emissionWalletId UUID |
Wallet of emission of the movement Note : used in the actions with a double movement (transfer and transferReversal) |