Recipes
Recipes
Follow the shortest path from credentials to a reconciled payment.
Recipes are implementation guides. Each one should leave you with a concrete ID, request, response, or production check that unlocks the next step.Payment quickstart
Generate the request before wiring every endpoint.
Pick the intent, currencies, origin rail, and destination account. The builder returns the exact shape your backend sends to Conomy.
POST /sandbox/payments HTTP/1.1
Host: api.conomyhq.com
x-api-key: {YOUR_API_KEY}
Authorization: Bearer {ACCESS_TOKEN}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json
Accept: application/json
{
"type": "TOPUP_ACCOUNT",
"product": "CLP:CLP",
"origins": [{ "type": "ETPAY" }],
"destinations": [{ "type": "ACCOUNT" }]
}
Authenticate Create resources Build payment Capture Reconcile
Setup
Create the operating context
Authenticate, create the organization identity, add users, and open internal accounts before moving money.Build payment UI
Render only what the identity can use
Discover enabled currencies, rails, required fields, and request shape before presenting a payment form.Money movement
Run the common payment jobs
Each recipe maps a business job to the exact origin, destination, capture, and reconciliation steps.Reconciliation
Close the loop after creation
Capture payments, mirror final state, handle review gates, and make webhook processing idempotent.Production