- Introduction
- Authentication
- Errors
- Change Logs
- Promotion
- Loyalty
- Wallet
- PIM
- Get ProductsPOST
- Get Product SettingsGET
- Get Catalog SettingsGET
- Upsert ProductPOST
- Upsert CategoryPOST
- Bulk Product UpsertPOST
- Check Batch StatusPOST
- Delete ProductPOST
- Attach Product Attribute ImagePOST
- Attach Category ImagePOST
- Get ImageGET
- Upsert AttributesPOST
- Delete AttributePOST
- Upsert Attribute OptionsPOST
- Upsert Attribute OptionPOST
- Delete Attribute OptionPOST
- Merchant
- How to
Get Product Settings
Production
Production
GET
https://api.b2b.retter.io/5p1hp1d2t/CALL/PIMAPI/getProductSettings/{PROJECT_ID}
PIM
Last modified:2024-09-17 11:22:35
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params
PROJECT_ID
string
required
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 GET 'https://api.b2b.retter.io/5p1hp1d2t/CALL/PIMAPI/getProductSettings/' \
--header 'x-api-key;'
Responses
🟢200OK
application/json
Body
productSettings
object
optional
attributes
array [object {12}]
optional
attributeOptions
array [object {2}]
optional
families
array [object {6}]
optional
attributeGroups
array [object {2}]
optional
groupTypes
array [object]
optional
groups
array [object]
optional
Example
{
"productSettings": {
"attributes": [
{
"availableLocales": [
"string"
],
"isLocaleSpecific": true,
"localizable": true,
"scopable": true,
"code": "string",
"type": "string",
"group": "string",
"isUnique": true,
"label": [
{
"locale": "string",
"value": "string"
}
],
"maxCharacters": 0,
"validationRegexp": "string",
"validationRule": "string"
}
],
"attributeOptions": [
{
"code": "string",
"options": [
{
"code": "string",
"label": [
{
"locale": "string",
"value": "string"
}
]
}
]
}
],
"families": [
{
"code": "string",
"label": [
{
"locale": "string",
"value": "string"
}
],
"attributeAsLabel": "string",
"attributes": [
{
"attribute": "string",
"requiredChannels": [
{}
]
}
],
"variants": [
{
"code": "string",
"label": [
{}
],
"axes": [
"string"
],
"attributes": [
"string"
]
}
],
"attributeAsImage": "string"
}
],
"attributeGroups": [
{
"code": "string",
"label": [
{
"locale": "string",
"value": "string"
}
]
}
],
"groupTypes": [
{}
],
"groups": [
{}
]
}
}
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
Modified at 2024-09-17 11:22:35