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

List Values

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/listValues/{{MIRCATE_PROJECT_ID}}
PromotionLoyalty
Last modified:2025-05-08 06:21:47
The Dataset List Values method is used to retrieve the available source types for datasets. It provides insight into how datasets can be structured and used across Loyalty and Promotion modules.

Request

Header Params
x-api-key
string 
required
Example:
***************
Body Params application/json
parameterSourceId
string 
required
limit
integer 
optional
page
integer 
optional
Example
{
    "parameterSourceId": "OV6J9L",
    "limit": 50,
    "page": 1
    // "search": ""
}

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/listValues/{{MIRCATE_PROJECT_ID}}' \
--header 'x-api-key: ***************' \
--header 'Content-Type: application/json' \
--data-raw '{
    "parameterSourceId": "OV6J9L",
    "limit": 50,
    "page": 1
    // "search": ""
}'

Responses

🟢200Success
application/json
Body
meta
object 
required
total
integer 
required
count
integer 
required
perPage
integer 
required
currentPage
integer 
required
totalPages
integer 
required
values
array [object {2}] 
required
value
string 
optional
label
string 
optional
Example
{
  "meta": {
    "total": 1,
    "count": 1,
    "perPage": 20,
    "currentPage": 1,
    "totalPages": 1
  },
  "values": [
    {
      "value": "bank01",
      "label": "Bank of America"
    }
  ]
}
Modified at 2025-05-08 06:21:47
Previous
List Sources
Next
Creating a Promotion Template
Built with