Build your own
Custom connectors are a 2–4 week build.
Every connector implements the same interface. RevenuePoint engineers build the new connector; once shipped, it becomes part of the Gateway product — available to every customer without touching your tenants or your data.
export interface GatewayConnector<T = unknown> {
name: string;
authenticate(secrets: SecretBag): Promise<Session>;
query(req: QueryRequest, ctx: TenantContext): Promise<T[]>;
create(req: CreateRequest, ctx: TenantContext): Promise<T>;
update(req: UpdateRequest, ctx: TenantContext): Promise<T>;
}All RevenuePoint engineers commit through the same review process; no shortcuts, no “just for one customer” hacks. The connector you fund is the connector everyone gets.