Socket
Book a DemoInstallSign in
Socket

oneflow-sdk-js

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oneflow-sdk-js

Javascript SDK for Site Flow

latest
npmnpm
Version
2.2.0
Version published
Maintainers
1
Created
Source

oneflow-sdk-js

Installation

    npm install oneflow-sdk-js

Basic usage

    const OneflowClient = require('oneflow-sdk-js');

    const client = new OneflowClient(
    	process.env.OFS_URL || 'https://pro-api.oneflowcloud.com/api',
    	process.env.OFS_TOKEN,
    	process.env.OFS_SECRET
    );

    // ...

    const destinationName  = 'oneflow';
    const orderData  = { sourceOrderId: 'aUniqueId' };
    const order = client.createOrder(destinationName, orderData);

    // ... instructions to complete the order data ...

    const result = await client.submitOrder();

If a unique routing rule path needs to be specified, it can be done using:

const result = await client.submitOrder({ routingRule: 'your routing rule key here' });

The routing rule key is a unique string of numbers and letters

For more detailed examples checkout the examples folder.

You can find more information about the required fields and the order structure in https://hpsiteflow.com

FAQs

Package last updated on 14 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts