• France
status page
Demo shops
assistance
FAQContact support
Search
Categories
Tags
Europe (English)
France
Spain
Europe (English)
India
Homepage
Use cases
Create a payment
Create an installment payment
Create a multi-card (split) payment
Create a payment by Alias (Token)
Create a payment link
Create a recurring payment
Manage subscriptions
Manage your transactions (refund, cancel...)
Analyze your reports
API docs
Embedded Form
REST API
Hosted payment
Mobile payment
File exchange
SDD mandates by REST API
Snippets
Payment methods
Plugins
Marketplace
Guides
Merchant Back Office
Back Office Expert
Functional guides

After the payment

The choice of payment method and the amount actually paid per MID is only visible at the end of the payment cycle.

From the marketplace point of view, this information is therefore only available from the moment the order status changes to PENDING.

If a voucher was used, the actual_amount attribute provides information about the amount that was affected to the item.

If we take the previous example, we can have the following “item” object:
...
"status":"PENDING",
"amount":8000,
"items":[{
"uuid":"fc300ee2-fd43-46e0-9314-770f05a5b338",
...
"reference":"Buffet1",
"description":"Buffet 1",
"type":"FOOD",
"amount":8000,
...
"vouchers":[{
"contract_type":"CVCONNECT",
"is_selected":true,
"actual_amount":3000
},
{
"contract_type":"CONECS",
"eligible_amount":1400,
"is_selected":true,
"actual_amount":1100
}]
}]

In this example, we can see that the buyer paid €11 with a CONECS card and €30 with a holiday voucher (Chèque-Vacances). Since the total amount is €80, there will be a third transaction for the remaining amount (i.e. 80 - 30 - 11 = €39).

NOTE

Since an order can contain multiple items payable by voucher, the API automatically allocates the actual_amount in random order. For example,

...
"items":[{
"reference":"Buffet1",
"description":"Buffet 1",
"type":"FOOD",
"amount":8000,
...
"vouchers":[{
"contract_type":"CONECS",
"eligible_amount":1400,
"is_selected":true,
"actual_amount":1400
}]
},
{
"reference":"Buffet2",
"description":"Buffet 2",
"type":"FOOD",
"amount":5500,
...
"vouchers":[{
"contract_type":"CONECS",
"eligible_amount":1100,
"is_selected":true,
"actual_amount":500
}]
},
{
"reference":"Buffet3",
"description":"Buffet 3",
"type":"FOOD",
"amount":5500,
...
"vouchers":[{
"contract_type":"CONECS",
"eligible_amount":1100,
"is_selected":true,
"actual_amount":0
}]
}]
...

In this case, the buyer seems to have used their daily credit amount of €19, which was allocated for the entire first item (€14), for a part of the second item (€5), and for none of the third item.

The credit of €19 could also be split as follows:
  • €11 for Buffet 2;
  • €8 for Buffet 3;
  • €0 for Buffet 1.
Jobs
Legal
GDPR
25.18-1.11