dummint

Quick Start

Start testing integrations in under a minute. All requests go to a single base URL with the same authentication.

Base URL

https://api.dummint.id

Authentication

Authorization: Bearer dmt_your_api_key

Example Request

curl -X POST https://api.dummint.id/v1/xendit/invoices \
  -H "Authorization: Bearer dmt_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "external_id": "order-123",
    "amount": 250000,
    "description": "Invoice for Order #123",
    "customer": {
      "given_names": "John",
      "email": "john@example.com"
    },
    "payment_methods": ["BCA", "MANDIRI", "OVO", "GOPAY"]
  }'

Example Response

{
  "id": "inv_dummint_abc123",
  "external_id": "order-123",
  "amount": 250000,
  "status": "PENDING",
  "invoice_url": "https://dummint.id/inv/abc123",
  "expiry_date": "2026-06-01T17:58:00Z",
  "available_payment_methods": ["BCA", "MANDIRI", "OVO", "GOPAY"],
  "simulated": true
}

Responses include "simulated": true to confirm the data is mocked.