Mircate
  1. Dataset
Mircate
  • Introduction
  • Authentication
  • Errors
  • Change Logs
  • PIM
    • Get Products
      POST
    • Get Product Settings
      GET
    • Get Catalog Settings
      GET
    • Upsert Product
      POST
    • Upsert Category
      POST
    • Bulk Product Upsert
      POST
    • Check Batch Status
      POST
    • Delete Product
      POST
    • Attach Product Attribute Image
      POST
    • Attach Category Image
      POST
    • Get Image
      GET
    • Upsert Attributes
      POST
    • Delete Attribute
      POST
    • Upsert Attribute Options
      POST
    • Upsert Attribute Option
      POST
    • Delete Attribute Option
      POST
  • Promotion
    • Calculate
    • Start Transaction
    • Commit Transaction
    • Revert Transaction
    • Cancel Transaction
    • Get Active Promotions
  • Loyalty
    • Receive Event
    • Calculate
    • Start Transaction
    • Commit Transaction
    • Cancel Transaction
    • List Measurements
  • Wallet
    • Get Wallet
    • Create Wallet
    • Create Account
    • Get Account
    • Get Accounts
    • List Accounts
    • List Transactions
    • Add Account
    • Remove Account
    • Fix
    • Load
    • Spend
    • Refund
    • Cancel
  • Talking Product
    • Create Product
    • Update Product
    • Delete Product
    • Get Product
    • List Product
  • Merchant
    • Sales Channel
      • Reserve Stock
      • Cancel Stock
      • Commit Stock
      • Refund Stock
      • Get Current Stock
    • Product Supplier
      • Receive Stock
      • Receive Price
      • Get Stock/Price History
      • Check Batch Status
      • Remove My Products
      • Clean My Products
      • Export Stock/Price
      • List Exports
      • Get Exported Files
    • Global Products
      • Receive Products
      • Get Global Products
      • Remove Global Products
  • Common
    • Dataset
      • Create
        POST
      • Update
        POST
      • Delete
        POST
      • Value Upsert
        POST
      • Value Delete
        POST
      • List Sources
        POST
      • List Values
        POST
  • How to
    • Creating a Promotion Template
    • Promotion Transaction Flow
    • Understanding PIM Product Statuses
  1. Dataset

Value Upsert

Production
https://api.b2b.retter.io/5p1hp1d2t
Production
https://api.b2b.retter.io/5p1hp1d2t
POST
https://api.b2b.retter.io/5p1hp1d2t
/{{RIO_PROJECT_ID}}/CALL/ParameterSource/upsertValue/{{MIRCATE_PROJECT_ID}}
PromotionLoyalty
Last modified:2025-05-07 14:01:52
The Dataset Value Upsert method is used to add or update values within a shared dataset. It ensures that dataset entries used across Loyalty and Promotion modules are kept current without creating duplicates.

Request

Header Params
x-api-key
string 
required
Example:
***************
Body Params application/json
parameterSourceId
string 
required
value
object 
required
test
string 
required
Example
{
  "parameterSourceId": "OV6J9L",
  "value": {
    "test": "Test Bank"
  }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api.b2b.retter.io/5p1hp1d2t/{{RIO_PROJECT_ID}}/CALL/ParameterSource/upsertValue/{{MIRCATE_PROJECT_ID}}' \
--header 'x-api-key: ***************' \
--header 'Content-Type: application/json' \
--data-raw '{
  "parameterSourceId": "OV6J9L",
  "value": {
    "test": "Test Bank"
  }
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2025-05-07 14:01:52
Previous
Delete
Next
Value Delete
Built with