/api/co/payments/webhooks/stripeEndpoint operation.
Auth: None (public endpoint).Source: CAROWNER-API-COMPLETE.md
Request Example
{}Response Example
{
"data": {},
"meta": {
"request_id": "f59ee325-0445-4bd0-9bf1-73edcd7da151",
"generated_at": "2026-02-12T10:00:00Z"
}
}Node.js Axios example
import axios from "axios";
const BASE_URL = process.env.MINBIL_API_BASE_URL ?? "http://localhost:5000";
const API_KEY = process.env.MINBIL_API_KEY ?? "YOUR_API_KEY";
const ACCESS_TOKEN = process.env.MINBIL_ACCESS_TOKEN ?? "YOUR_BEARER_TOKEN";
async function run() {
const response = await axios({
method: "post",
url: BASE_URL + "/api/co/payments/webhooks/stripe",
headers: {
"Content-Type": "application/json",
},
timeout: 20000,
});
console.log(response.status, response.data);
}
run().catch((error) => {
console.error(error.response?.status, error.response?.data ?? error.message);
});cURL example
curl -X POST 'https://api.minbil.no/api/co/payments/webhooks/stripe'\
-H 'Accept: application/json'Fetch example
const BASE_URL = process.env.MINBIL_API_BASE_URL ?? "http://localhost:5000";
const API_KEY = process.env.MINBIL_API_KEY ?? "YOUR_API_KEY";
const ACCESS_TOKEN = process.env.MINBIL_ACCESS_TOKEN ?? "YOUR_BEARER_TOKEN";
const response = await fetch(BASE_URL + "/api/co/payments/webhooks/stripe", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
});
const data = await response.json();
console.log(response.status, data);