Mircate
  1. Global Products
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
      POST
    • Start Transaction
      POST
    • Commit Transaction
      POST
    • Revert Transaction
      POST
    • Cancel Transaction
      POST
    • Get Active Promotions
      GET
  • 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
        POST
      • Get Global Products
        POST
      • Remove Global Products
        POST
  • Common
    • Dataset
      • Create
      • Update
      • Delete
      • Value Upsert
      • Value Delete
      • List Sources
      • List Values
  • How to
    • Creating a Promotion Template
    • Promotion Transaction Flow
    • Understanding PIM Product Statuses
  1. Global Products

Get Global Products

Production
https://api.b2b.retter.io/5p1hp1d2t
Production
https://api.b2b.retter.io/5p1hp1d2t
POST
https://api.b2b.retter.io/5p1hp1d2t
/CALL/MerchantAccount/getGlobalProducts/{B2B_MERCHANT_PROJECT_ID}
Global Products
Last modified:2024-09-17 11:22:35
This method is used for getting global products.

Request

Authorization
Add parameter in header
source-api-key
Example:
source-api-key: ********************
Path Params
B2B_MERCHANT_PROJECT_ID
string 
required
Header Params
x-api-key
string 
optional
{{STOCK_PRICE_API_KEY}}
Body Params application/json
from
integer 
optional
pageSize
integer 
optional
search
string 
optional
Example
{
    "from": 0,
    "pageSize": 0,
    "search": "string"
}

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 --request POST 'https://api.b2b.retter.io/5p1hp1d2t/CALL/MerchantAccount/getGlobalProducts/' \
--header 'Content-Type: application/json' \
--header 'source-api-key;' \
--data-raw '{
    "from": 0,
    "pageSize": 0,
    "search": "string"
}'

Responses

🟢200OK
application/json
OK
Body
total
integer 
optional
size
integer 
optional
pageSize
integer 
optional
from
integer 
optional
result
array [object {6}] 
optional
brand
string 
optional
categories
array[string]
optional
name
string 
optional
productId
string 
optional
barcodes
array[string]
optional
skus
array [object {2}] 
optional
Example
{
    "total": 0,
    "size": 0,
    "pageSize": 0,
    "from": 0,
    "result": [
        {
            "brand": "string",
            "categories": [
                "string"
            ],
            "name": "string",
            "productId": "string",
            "barcodes": [
                "string"
            ],
            "skus": [
                {
                    "sku": "string",
                    "salesChannel": "string"
                }
            ]
        }
    ]
}
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-09-17 11:22:35
Previous
Receive Products
Next
Remove Global Products
Built with