curl --request POST \
--url https://checkout.dintero.com/v1/view/{session_id}/session/events/payment_information \
--header 'Content-Type: application/json' \
--data '
{
"billing_address": {
"first_name": "John",
"last_name": "Doe",
"address_line": "Gaustadalleen 21",
"postal_code": "0349",
"postal_place": "Oslo",
"country": "NO",
"phone_number": "<string>",
"email": "<string>",
"address_line_2": "<string>",
"business_name": "<string>"
},
"shipping_address": {
"first_name": "John",
"last_name": "Doe",
"address_line": "Gaustadalleen 21",
"postal_code": "0349",
"postal_place": "Oslo",
"country": "NO",
"phone_number": "<string>",
"email": "<string>",
"address_line_2": "<string>",
"business_name": "<string>"
},
"locale": "en-GB"
}
'