Integration Guide
Authentication
import Cashramp from "cashramp";
const cashramp = new Cashramp({
env: "production", // or "test" for staging
secretKey: process.env.CSHRMP_SECRET_KEY,
});require "cashramp"
client = Cashramp::Client.initialize(
env: :production, # or :test for staging
secret_key: ENV["CSHRMP_SECRET_KEY"]
)import (
"os"
cashrampsdk "github.com/rockets-hq/cashramp-sdk-go"
)
client, err := cashrampsdk.InitialiseClient(
"live", // or "test" for staging
os.Getenv("CSHRMP_SECRET_KEY"),
)
if err != nil {
panic(err)
}Core Concepts
1. Integration Options
Type
Use Case
Implementation
2. Payment Lifecycle
Status
Description
Webhook Event
3. Webhooks
Last updated