Hello @Alexander_Pavelko
Here is what I have in the logs
“Service invocation failed: Illegal unquoted character ((CTRL-CHAR, code 10)): has to be escaped using backslash to be included in string value\n at [Source: (String)""{\n "id": "evt_1",\n "object": "event",\n "api_version": "2020-08-27",\n "created": 1659464460,\n "data": {\n "object": {\n "id": "cs_test",\n "object": "checkout.session",\n "after_expiration": null,\n "allow_promotion_codes": null,\n "amount_subtotal": 10000,\n "amount_total": 10000,\n "automatic_tax": {\n "enabled": false,\n "status": null\n },\n "billing_addres"[truncated 1908 chars]; line: 1, column: 4]”
Here is what I found in Stripe as input
{
“id”: “evt_1”,
“object”: “event”,
“api_version”: “2020-08-27”,
“created”: 1659464460,
“data”: {
“object”: {
“id”: “cs_test”,
“object”: “checkout.session”,
“after_expiration”: null,
“allow_promotion_codes”: null,
“amount_subtotal”: 10000,
“amount_total”: 10000,
“automatic_tax”: {
“enabled”: false,
“status”: null
},
“billing_address_collection”: null,
“cancel_url”: “https://eve.backendless.app/…”,
“client_reference_id”: null,
“consent”: null,
“consent_collection”: null,
“currency”: “eur”,
“customer”: “cus_1”,
“customer_creation”: null,
“customer_details”: {
“address”: {
“city”: null,
“country”: “FR”,
“line1”: null,
“line2”: null,
“postal_code”: null,
“state”: null
},
“email”: “email@gmail.com”,
“name”: “Mr Dupont”,
“phone”: null,
“tax_exempt”: “none”,
“tax_ids”: [
]
},
“customer_email”: null,
“expires_at”: 1659550828,
“livemode”: false,
“locale”: null,
“metadata”: {
},
“mode”: “subscription”,
“payment_intent”: null,
“payment_link”: null,
“payment_method_options”: null,
“payment_method_types”: [
“card”
],
“payment_status”: “paid”,
“phone_number_collection”: {
“enabled”: false
},
“recovered_from”: null,
“setup_intent”: null,
“shipping”: null,
“shipping_address_collection”: null,
“shipping_options”: [
],
“shipping_rate”: null,
“status”: “complete”,
“submit_type”: null,
“subscription”: “sub_1”,
“success_url”: “https://eve.backendless.app/…”,
“total_details”: {
“amount_discount”: 0,
“amount_shipping”: 0,
“amount_tax”: 0
},
“url”: null
}
},
“livemode”: false,
“pending_webhooks”: 1,
“request”: {
“id”: null,
“idempotency_key”: null
},
“type”: “checkout.session.completed”
}
Thank you