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 Sources

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/listSources/{{MIRCATE_PROJECT_ID}}
PromotionLoyalty
Last modified:2025-05-08 06:21:18
The Dataset List Sources 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
limit
integer 
optional
page
integer 
optional
Example
{
    "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/listSources/{{MIRCATE_PROJECT_ID}}' \
--header 'x-api-key: ***************' \
--header 'Content-Type: application/json' \
--data-raw '{
    "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
sources
array [object {3}] 
required
id
string 
optional
name
string 
optional
type
string 
optional
Example
{
  "meta": {
    "total": 1,
    "count": 1,
    "perPage": 20,
    "currentPage": 1,
    "totalPages": 1
  },
  "sources": [
    {
      "id": "Ow021Z",
      "name": "Banks",
      "type": "string"
    }
  ]
}
Modified at 2025-05-08 06:21:18
Previous
Value Delete
Next
List Values
Built with