Skip to main content
POST
https://checkout.dintero.com/v1
/
view
/
{session_id}
/
session
/
events
/
payment_information
checkout_sid_events_pi_post
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"
}
'
{
  "error": {
    "message": "<string>",
    "code": "<string>",
    "errors": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

session_id
string<checkout-id>
required

The session ID

Body

application/json
billing_address
object
required
shipping_address
object
required
locale
string
required

Combination of purchase country and language. Example: "en-GB"

Pattern: ^[A-Za-z]{2}-[A-Za-z]{2}$
Example:

"en-GB"

Response

Payment information event added

Last modified on May 12, 2026