Build 2026-01-14 10:19:48
The Svea Checkout Adapter API is used to create and manage a Svea Checkout Order.
https://docs.norce.io/
https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments
curl -i -X POST \
'https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'{ "paymentId": "string", "htmlSnippet": "\n <div id='svea-checkout-container'><script>alert('Initializing Svea Checkout');</script>\n </div>\n " }
https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/recurring
curl -i -X POST \
'https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/recurring' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'x-channel: 1' \
-H 'x-merchant: norce' \
-d '{
"token": "string"
}'{ "paymentId": "string" }
https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/{payment_id}
curl -i -X GET \
'https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/{payment_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'{ "paymentId": "string", "htmlSnippet": "\n <div id='svea-checkout-container'><script>alert('Initializing Svea Checkout');</script>\n </div>\n " }
https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/{payment_id}/remove
curl -i -X POST \
'https://docs.norce.io/api/checkout/v1/orders/{order_id}/payments/{payment_id}/remove' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'x-channel: 1' \
-H 'x-merchant: norce'