Get Product Attribute Meta

post/productmanager.fetchpxam

Extended fetch command to retrieve product attribute meta data.

Unlike the general fetch/{typeCode} endpoint, this extended endpoint also handles global metadata configurations.
For example, if product metadata is configured to originate from the global partition, this command will automatically retrieve it from there. In contrast, the general fetch endpoint is limited to returning data exclusively from the local partition.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
Responses
200

OK

Response Schema: application/json
object
node
string
startRow
integer
Array of objects (ProductExtensionAttributeMeta)
Array
cssProperties
string <= 255 characters
labelTranslations
string
typedId
string
fieldName
string <= 255 characters
lastUpdateDate
string <date-time>
fieldValueOptions
string
description
string <= 1000 characters
readOnly
boolean
label
string <= 255 characters
version
integer
requiredField
boolean
createdBy
integer
name
string <= 255 characters
entityRefTypeCode
string <= 255 characters
formatType
string <= 255 characters
Possible values: "NUMERIC" "NUMERIC_LONG" "MONEY" "PERCENT" "TEXT" "MONEY_EUR" "MONEY_USD" "MONEY_GBP" "MONEY_JPY" "MONEY_CHF" "MONEY_PLN" "DATETIME" "DATE" "INTEGER" "LINK" "COMPLEX" "SPARKLINE"
fieldType
integer
createDate
string <date-time>
lastUpdateBy
integer
endRow
integer
totalRows
integer
status
integer
Request samples
application/json
{ }
Response samples
application/json
{
  • "response": {
    • "node": "pricefx-cluster-app-frontend-7bcc977f5c-h5m76",
    • "startRow": 0,
    • "data": [
      • {
        • "version": 0,
        • "typedId": "283.PXAM",
        • "fieldName": "attribute1",
        • "label": "StringAttribute",
        • "fieldType": 2,
        • "requiredField": false,
        • "readOnly": false,
        • "labelTranslations": "{\n \"\":\"String\"\n}",
        • "name": "TEST",
        • "createDate": "2021-03-18T16:36:05",
        • "createdBy": 2147483667,
        • "lastUpdateDate": "2021-03-18T16:36:05",
        • "lastUpdateBy": 2147483667
        }
      ],
    • "endRow": 1,
    • "totalRows": 1,
    • "status": 0
    }
}