SimpliFi
HomeContact Us
HomeContact Us
  1. Funding Source
  • Introduction
  • SimpliFi Architecture
  • Webhooks
  • Auth
    • Login to generate JWT token
      POST
  • Card Program
    • Create Card Program
      POST
    • Get Card Program
      GET
    • Change Card Program Status
      PATCH
    • Link Funding Source to Card Program
      POST
    • Get Balance of Funding Source
      GET
    • Transfer funds from one Card Program to other
      POST
    • Raise Funding Document Upload
      POST
    • Raise Funding
      POST
    • Funding Source Statement
      GET
  • Funding Source
    • Create Rule Group on Funding Account
      POST
    • Update Rule Group on Funding Account
      PUT
    • Delete Rule Group on Funding Account
      DELETE
    • Get Rule Groups on Funding Account
      GET
    • Appply Rule Group on Funding Account
      POST
    • Remove Rule Group on Funding Account
      DELETE
  • Card
    • List all Cards
      GET
    • Create a Card
      POST
    • Get Card Details
      GET
    • Retrieve Balance on the Card
      GET
    • Activate a Card
      POST
    • Manage Card Status
      POST
    • Load a Card
      POST
    • Unload a Card
      POST
    • Renewal of the Card
      POST
    • Request a Physical Card
      POST
    • Get Card Statement
      GET
    • Apply rule group on card
      POST
    • Remove rule group on card
      DELETE
  • User
    • List all Users
    • Create a User
    • Upload Document
    • Retrieve a User
    • Update a User
    • Delete a User
  • Transaction
    • List All Transactions
  • Fee
    • Add fee configuration
    • Fetch fee config
    • Change the status of fee config
    • Add Fee event against card uuid in queue
    • Apply fee against card uuid present in queue
  • Webhook
    • Get all events
    • Create a webhook
    • Update a Webhook
    • Delete a Webhook
    • Updates the status of Webhook
  1. Funding Source

Create Rule Group on Funding Account

POST
https://{{env}}-lb.simplifipay.com/v1/funding-source/{thirdPartyId}/rule-group
Funding Source
The 'Create Rule Group' endpoint creates new rule group on the Funding Account.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://uat-lb.simplifipay.com/v1/funding-source//rule-group' \
--header 'requestUuid;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "uuid": "cceec464-eb26-4fbf-8e91-695f133ced0a",
    "name": "Rule Group 1",
    "description": "Rule Group 1 Description",
    "transactionRestrictions": {
        "merchantRules": {
            "allow": "true",
            "mcc": [
                "string"
            ],
            "mccException": [
                "string"
            ]
        }
    },
    "loadRestrictions": {
        "minimumLoad": 1.5,
        "maximumLoad": 123.45,
        "loadCountDailyLimit": 3,
        "loadCountWeeklyLimit": 5,
        "loadCountMonthlyLimit": 10,
        "loadDailyLimit": 123.45,
        "loadWeeklyLimit": 523.45,
        "loadMonthlyLimit": 1023.45
    },
    "spendRestrictions": {
        "setLimitPerTxn": 123.45,
        "velocityDailyLimit": 3.45,
        "velocityWeeklyLimit": 23.45,
        "velocityMonthlyLimit": 123.45,
        "txnCountDaily": 3,
        "txnCountWeekly": 5,
        "txnCountMonthly": 10
    }
}'
Response Response Example
202 - Example 1
{
    "uuid": "cceec464-eb26-4fbf-8e91-695f133ced0a",
    "name": "Rule Group 1",
    "description": "Rule Group 1 Description",
    "transactionRestrictions": {
        "merchantRules": {
            "allow": "true",
            "mcc": [
                "string"
            ],
            "mccException": [
                "string"
            ]
        }
    },
    "loadRestrictions": {
        "minimumLoad": 1.5,
        "maximumLoad": 123.45,
        "loadCountDailyLimit": 3,
        "loadCountWeeklyLimit": 5,
        "loadCountMonthlyLimit": 10,
        "loadDailyLimit": 123.45,
        "loadWeeklyLimit": 523.45,
        "loadMonthlyLimit": 1023.45
    },
    "spendRestrictions": {
        "setLimitPerTxn": 123.45,
        "velocityDailyLimit": 3.45,
        "velocityWeeklyLimit": 23.45,
        "velocityMonthlyLimit": 123.45,
        "txnCountDaily": 3,
        "txnCountWeekly": 5,
        "txnCountMonthly": 10
    }
}

Request

Authorization
JWT
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params
thirdPartyId
string 
required
This is a unique identifier for the Account ID of funding source (wallet)
Header Params
requestUuid
string 
required
A unique id is required to be passed as part of the header whenever a SimpliFi API is called from your
system. This would help us in debugging in case of a discrepancy in the expected behavior of the API.
Example:
00d366f2-a6e9-4714-b172-02c4e58c29d8
Body Params application/json
uuid
string 
optional
This field contains the system generated unique identifier for the rule group
that was created using the Rule Group API.
Example:
cceec464-eb26-4fbf-8e91-695f133ced0a
name
string 
required
Name of the rule group
Example:
Rule Group 1
description
string 
optional
Description of the rule group
Example:
Rule Group 1 Description
transactionRestrictions
object (RuleGroupTransactionRestrictions) 
optional
Details of transaction-related restrictions.
merchantRules
object (RuleGroupMerchantRules) 
required
Allow or deny merchant category codes.
loadRestrictions
object (RuleGroupLoadRestrictions) 
optional
Details of card load-related restrictions.
minimumLoad
number 
optional
Example:
1.5
maximumLoad
number 
optional
Example:
123.45
loadCountDailyLimit
number <int32>
optional
Example:
3
loadCountWeeklyLimit
number <int32>
optional
Example:
5
loadCountMonthlyLimit
number <int32>
optional
Example:
10
loadDailyLimit
number 
optional
Example:
123.45
loadWeeklyLimit
number 
optional
Example:
523.45
loadMonthlyLimit
number 
optional
Example:
1023.45
spendRestrictions
object (RuleGroupSpendRestrictions) 
optional
Details of card spend-related restrictions.
setLimitPerTxn
number 
optional
Example:
123.45
velocityDailyLimit
number 
optional
Example:
3.45
velocityWeeklyLimit
number 
optional
Example:
23.45
velocityMonthlyLimit
number 
optional
Example:
123.45
txnCountDaily
number <int32>
optional
Example:
3
txnCountWeekly
number <int32>
optional
Example:
5
txnCountMonthly
number <int32>
optional
Example:
10
Examples

Responses

🟢202Accepted
application/json
Successful operation.
Body
uuid
string 
optional
This field contains the system generated unique identifier for the rule group
that was created using the Rule Group API.
Example:
cceec464-eb26-4fbf-8e91-695f133ced0a
name
string 
required
Name of the rule group
Example:
Rule Group 1
description
string 
optional
Description of the rule group
Example:
Rule Group 1 Description
transactionRestrictions
object (RuleGroupTransactionRestrictions) 
optional
Details of transaction-related restrictions.
merchantRules
object (RuleGroupMerchantRules) 
required
Allow or deny merchant category codes.
loadRestrictions
object (RuleGroupLoadRestrictions) 
optional
Details of card load-related restrictions.
minimumLoad
number 
optional
Example:
1.5
maximumLoad
number 
optional
Example:
123.45
loadCountDailyLimit
number <int32>
optional
Example:
3
loadCountWeeklyLimit
number <int32>
optional
Example:
5
loadCountMonthlyLimit
number <int32>
optional
Example:
10
loadDailyLimit
number 
optional
Example:
123.45
loadWeeklyLimit
number 
optional
Example:
523.45
loadMonthlyLimit
number 
optional
Example:
1023.45
spendRestrictions
object (RuleGroupSpendRestrictions) 
optional
Details of card spend-related restrictions.
setLimitPerTxn
number 
optional
Example:
123.45
velocityDailyLimit
number 
optional
Example:
3.45
velocityWeeklyLimit
number 
optional
Example:
23.45
velocityMonthlyLimit
number 
optional
Example:
123.45
txnCountDaily
number <int32>
optional
Example:
3
txnCountWeekly
number <int32>
optional
Example:
5
txnCountMonthly
number <int32>
optional
Example:
10
🟠400Bad Request
🟠401Unauthorized
Modified at 2025-06-27 12:44:57
Previous
Funding Source
Next
Update Rule Group on Funding Account
Built with