Product Search by Linked Recipients
  • 15 Minutes to read
  • Dark
    Light

Product Search by Linked Recipients

  • Dark
    Light

Article summary

The Syndigo API allows searching for products that are linked to specific recipients. It was built to help limit the search results, so you receive ONLY the products linked to recipients mentioned in the request body.

To search products by linked recipients, mention the following in the postman and then click Send.

POST

Query Parameters

Expand to see the parameters and description


Parameter  Parameter TypeData TypeAccepted ValuesDescription
vocabularyId
Recommended (Conditionally Optional)
StringGUIDIf a valid companyId is provided, vocabularyId is not Required
companyIdRequired (Conditionally Optional)
StringGUIDIf a valid vocabularyId is provided, companyId is not Required
skipCountOptionalInteger>=0; (skipCount+takeCount)<10,000
Used in combination with takeCount to paginate large numbers of product records. Quantity of records to skip before you start taking products. Whatever value is used for the takeCount, add to skipCount for the subsequent call
takeCount
Optional
Integer>= 0; Max: 500
Sets quantity of results to return at one time. Used for parsing large numbers of product records
useLens
OptionalBooleantrue/falseBased on target party id as contained in Post body, will return effective values only includes all values. Defaults to true. Ex. Using a recipient ID with useLens as true will return the product data applicable to that recipient
flattenLensedProductOptionalBooleantrue/falseAllows for flattening search results. Using this parameter you'll get only the recipient overrides.
locale
OptionalenumISO 639-1 standard
Stores the value passed in a language specific variant. Facilitates different values in different langugages on the same attribute. Defaults to en-US.
shouldIncludeMissingVocabularyAttributes
OptionalBooleantrue/false
Will determine if attributes not included in your company vocabulary will be returned in search results. Defaults to setting in customer vocabulary, else defaults to false. If set to true, attributes not in vocabulary will return with its GUID.


You can change the param values of skipCount, takeCount, vocabularyId, useLens, locale, and shouldIncludeMissingVocabularyAttributes according to your requirements.

How to search products linked to specific recipients?

In order to search products that are linked to specific recipients, please include the following:

"RecipientAliases": [
     “Recipient1”,
     “Recipient2”
]

You can use recipient aliases that were mapped in your vocabulary or recipients' GUIDs.

Headers

Authorization: Specify required Auth Token in the header.

Request Parameters

Expand to see the parameters and description

Parameter  Parameter TypeData TypeAccepted ValuesDescription
TargetPartyAlias
OptionalStringRecipient identifier: GUID or as aliased in customer vocab
Sets the lens through which the product data is returned from search
OrderBy
OptionalString
Attribute GUID (Ex. Product Name, Date Created, etc.).
Sets return results order
Desc
Optional
Booleantrue/false
Determines sort order (ascending or descending).
RecipientAliases
Optional
Array of Strings
Recipients identifiers: GUIDs or as aliased in a customer vocab
Limits the search to products explicitly linked to specific recipients.
AttributeFilterOperator
Optional
Boolean Operator
AND/ORDefaults to AND
OnHold
Optional
Boolean
true/false
Determines if the search returns OnHold products or not.
Archived
OptionalBooleantrue/false
Determines if the search returns Archived products or not.
Language
Optional
EnumISO 639-1 standard
Defaults to en-US. Sets the Language to be used for search
DataOwner
RequiredString
GUIDCompany ID GUID
ProductIds
OptionalArray of StringsProduct GUIDsList of Products to be searched
IdentifierAttributes
OptionalArray of Strings
Attribute GUIDsList of identifier types to be searched
Identifiers
Optional
Array of Strings
Identifier stringsRequired if you are using “Identifier Attributes”. Contains the list of identifiers to find.
AttributeExistsFilters
OptionalArray of Strings
Attribute GUIDs
Returns products that has (does not have) desired attribute.
AttributeFilters
Optional
Array of Strings
Attribute GUIDs
Searches the value of attribute defined.
SearchType
Part of AttributeFilters
Enum

Contains - has search val within the attribute value searched

Prefix,  - starts with this search value

Suffix,  - ends with this search value

Fuzzy,   - Similar match (fuzzy, a char might be missing in search value for example)

Search   - exact match for search value

Part of AttributeFilters
DateFilter
Optional
Array of Strings
See example, includes:
Name, Operator, Value, IncludeMissing
Array (see example). Searched date field and defined.
Name
RequiredEnumCreatedDate, RecordDate   LastModifiedDate, DiscontinueDate, ObsolescenceDate, LastPublishedDate
Part of DateFilter
OperatorRequiredEnumLessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo
Part of DateFilter
ValueRequiredStringCommonly acceptable string representation of a date/timePart of DateFilter
IncludeMissingRequiredBooleantrue/falsePart of DateFilter
WorkflowFilters
OptionalArray of Strings
Workflow, Statuses []Contains an array including “Workflow” name and “Statuses” as defined for the customer workflow.
Workflow RequiredStringWorkflow names as aliased in Customer VocabPart of WorkflowFilters
Statuses
RequiredArray of StringsStatuses names as aliased in Customer Vocab
Part of WorkflowFilters
PackagingTypes
Optional
EnumUndefined, BaseUnit, Case, Pallet, Display, Pack, Load, SetPack, MixedModule, MultiPack, PrePack, PrePack_Assortment
Used primarily for GDSN package hierarchy
ExcludeProductIds
Optional
StringProduct GUIDs
List of products to be excluded

Request


{
    "TargetPartyAlias": "",  
    "OrderBy": "GTIN",
    "Desc": false,
    "AttributeFilterOperator": "And",
    "AttributeFilters": [],
    "Archived": false,
    "OnHold": false,
    "DataOwner": "{{companyId}}",
    "DateFilters": [
        {
            "Name": "DiscontinueDate",
            "Operator": "GreaterThan",
            "Value": "2023-03-15T01:01:01.000",
            "IncludeMissing": true
        }
    ],
    "RecipientAliases" : [
        "Amazon US",
        "Target"
    ]
}

Response 200 OK


{
    "ErrorMode": "Fail",
    "DefaultLocale": "en-US",
    "ProducingOperationDetails": {
        "TotalHitCount": 22,
        "ResultCount": 2
    },
    "ProductImportData": {
        "ProductsToImport": [
            {
                "ImportMode": "Update",
                "ProductIdentifierPropertyOverride": "",
                "ProductReferencePropertyOverride": "",
                "ProductIdentifierValue": "b897a20c-8ec8-4c5b-be19-c2d2ca904c54",
                "SourceParties": [],
                "TaxonomyNodes": [],
                "CatalogItems": [],
                "PackageType": "BaseUnit",
                "ImmediateParentDetails": {},
                "RecipientsToLink": [
                    "Amazon US"
                ],
                "RecipientsRequirementSets": {
                    "Amazon US": [
                        "Amazon Listing 2.0"
                    ]
                },
                "ComplexValues": [],
                "NutritionalInformationModule": {
                    "Values": [],
                    "MultiValues": [],
                    "ContainerValues": [],
                    "AssetValues": [],
                    "DocumentValues": [],
                    "IsExplicitNullValue": false
                },
                "LifeCycle": {
                    "CreatedDate": {
                        "Value": "2022-11-02T20:10:41.17888Z",
                        "Delete": false
                    }
                },
                "AuditInfo": {
                    "CreatedDate": "2022-11-02T20:10:41.1788878Z",
                    "LastModifiedDate": "2024-04-16T12:51:20.7421951Z"
                },
                "Archived": false,
                "Values": [
                    {
                        "Name": "GTIN",
                        "ValuesByLocale": {
                            "en-US": "00000000000001"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Product Name",
                        "ValuesByLocale": {
                            "en-US": "Old Croc Cheese"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Packaging Level",
                        "ValuesByLocale": {
                            "en-US": "BASE_UNIT_OR_EACH"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Short Description",
                        "ValuesByLocale": {
                            "en-US": "Product Name Value goes here"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Functional Name",
                        "ValuesByLocale": {
                            "en-US": "zzz Product Name Value goes here"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Main Product Image",
                        "ValuesByLocale": {
                            "en-US": "5a75588c-3452-47dd-b5e4-fbfaa408d5ce"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    }
                ],
                "MultiValues": [],
                "ContainerValues": [],
                "AssetValues": [
                    {
                        "Name": "Main Product Image",
                        "ValuesByLocale": {
                            "en-US": {
                                "Name": "OLD CROC.png",
                                "Url": "https://assets.uat.syndigo.com/5a75588c-3452-47dd-b5e4-fbfaa408d5ce?originalFileName=true",
                                "Format": "png"
                            }
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    }
                ],
                "IsExplicitNullValue": false
            },
            {
                "ImportMode": "Update",
                "ProductIdentifierPropertyOverride": "",
                "ProductReferencePropertyOverride": "",
                "ProductIdentifierValue": "04e04213-fbda-4866-9606-714842832647",
                "SourceParties": [],
                "TaxonomyNodes": [
                    "7c7720f6-77f8-4e43-a09d-3ff4ec2cb68a",
                    "78d69e9e-972e-4cf6-b031-e6ca6533ef9f",
                    "c36ef3c3-2a92-4e1e-a8fc-629a64a6c75a"
                ],
                "CatalogItems": [],
                "PackageType": "BaseUnit",
                "ImmediateParentDetails": {},
                "RecipientsToLink": [
                    "Amazon US",
                    "Kroger",
                    "Walmart",
                    "Target"
                ],
                "RecipientsRequirementSets": {
                    "Amazon US": [
                        "Amazon Listing 2.0"
                    ]
                },
                "ComplexValues": [
                    {
                        "ParentAttribute": "_Temperatures",
                        "ValueListByLocale": [
                            {
                                "Locale": "en-US",
                                "RowList": []
                            }
                        ],
                        "SourceParty": "",
                        "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "ParentAttribute": "_additionalTradeItemIdentification",
                        "ValueListByLocale": [
                            {
                                "Locale": "en-US",
                                "RowList": []
                            }
                        ],
                        "SourceParty": "",
                        "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    }
                ],
                "NutritionalInformationModule": {
                    "Values": [],
                    "MultiValues": [],
                    "ContainerValues": [
                        {
                            "ParentAttribute": "Panels",
                            "RowList": [
                                {
                                    "Values": [
                                        {
                                            "Name": "VisualServingSize",
                                            "ValuesByLocale": {
                                                "en-US": "Added in Platform PFG"
                                            },
                                            "SourceParty": "",
                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                            "Delete": false,
                                            "IsExplicitNullValue": false
                                        }
                                    ],
                                    "MultiValues": [],
                                    "ContainerValues": [
                                        {
                                            "ParentAttribute": "ServingSize",
                                            "RowList": [
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "Code",
                                                            "ValuesByLocale": {
                                                                "en-US": "apricot(s)"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        },
                                                        {
                                                            "Name": "Value",
                                                            "ValuesByLocale": {
                                                                "en-US": "1"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                }
                                            ],
                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                            "Recipient": "",
                                            "Delete": false,
                                            "IsExplicitNullValue": false
                                        },
                                        {
                                            "ParentAttribute": "MetricServingSize",
                                            "RowList": [
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "Code",
                                                            "ValuesByLocale": {
                                                                "en-US": "DG"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                }
                                            ],
                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                            "Recipient": "",
                                            "Delete": false,
                                            "IsExplicitNullValue": false
                                        },
                                        {
                                            "ParentAttribute": "NutrientDetails",
                                            "RowList": [
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "ENER-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "E14"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "ENERPF"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "E14"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "FAT"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "FASAT"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "FATRN"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "CHOL-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "NA"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "CHO-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "FIBTSW"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "SUGAR-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "SUGAD"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "PRO-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "GRM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "VITA-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MC"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "VITC-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "VITD-"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MC"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "CA"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "FE"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                },
                                                {
                                                    "Values": [
                                                        {
                                                            "Name": "NutrientTypeCode",
                                                            "ValuesByLocale": {
                                                                "en-US": "K"
                                                            },
                                                            "SourceParty": "",
                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "MultiValues": [],
                                                    "ContainerValues": [
                                                        {
                                                            "ParentAttribute": "QuantityContained",
                                                            "RowList": [
                                                                {
                                                                    "Values": [
                                                                        {
                                                                            "Name": "Code",
                                                                            "ValuesByLocale": {
                                                                                "en-US": "MGM"
                                                                            },
                                                                            "SourceParty": "",
                                                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                                            "Delete": false,
                                                                            "IsExplicitNullValue": false
                                                                        }
                                                                    ],
                                                                    "MultiValues": [],
                                                                    "ContainerValues": [],
                                                                    "AssetValues": [],
                                                                    "IsExplicitNullValue": false
                                                                }
                                                            ],
                                                            "SourceParty": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                                            "Recipient": "",
                                                            "Delete": false,
                                                            "IsExplicitNullValue": false
                                                        }
                                                    ],
                                                    "AssetValues": [],
                                                    "IsExplicitNullValue": false
                                                }
                                            ],
                                            "SourceParty": "",
                                            "Recipient": "949e31b4-db30-4afb-9bf6-c9494d098a17",
                                            "Delete": false,
                                            "IsExplicitNullValue": false
                                        }
                                    ],
                                    "AssetValues": [],
                                    "IsExplicitNullValue": false
                                }
                            ],
                            "SourceParty": "",
                            "Recipient": "",
                            "Delete": false,
                            "IsExplicitNullValue": false
                        }
                    ],
                    "AssetValues": [],
                    "IsExplicitNullValue": false
                },
                "LifeCycle": {
                    "CreatedDate": {
                        "Value": "2022-11-14T20:29:34.4000565Z",
                        "Delete": false
                    }
                },
                "AuditInfo": {
                    "CreatedDate": "2022-11-14T20:29:34.4000639Z",
                    "LastModifiedDate": "2023-06-06T14:19:49.8874521Z"
                },
                "Archived": false,
                "Values": [
                    {
                        "Name": "GTIN",
                        "ValuesByLocale": {
                            "en-US": "00000000000003"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Packaging Level",
                        "ValuesByLocale": {
                            "en-US": "BASE_UNIT_OR_EACH"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Product Name",
                        "ValuesByLocale": {
                            "en-US": "Cheesey Product Name from Poland"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Short Description",
                        "ValuesByLocale": {
                            "en-US": "Cheesey Short Description from API"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Feature - Benefit Bullet 1",
                        "ValuesByLocale": {
                            "en-US": "Feature description"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Feature - Benefit Bullet 2",
                        "ValuesByLocale": {
                            "en-US": "Feature part 2"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "MFG Part",
                        "ValuesByLocale": {
                            "en-US": "98765RGB"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "MFG Model",
                        "ValuesByLocale": {
                            "en-US": "993322TEST"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "MFG Name",
                        "ValuesByLocale": {
                            "en-US": "Test MFG Name"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "MFG Brand Name",
                        "ValuesByLocale": {
                            "en-US": "Cheesey name"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Supplier Company Name",
                        "ValuesByLocale": {
                            "en-US": "Grocerie Inc"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Import Classification Value",
                        "ValuesByLocale": {
                            "en-US": "Test classification"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Import Classification Type",
                        "ValuesByLocale": {
                            "en-US": "CUSTOMS_TARIFF_NUMBER"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Main Product Image",
                        "ValuesByLocale": {
                            "en-US": "ff420a48-80b7-49f8-8f37-bf57f54ccda0"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 2",
                        "ValuesByLocale": {
                            "en-US": "c8f00084-417c-4ff1-8c66-3a94a7b1da83"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 4",
                        "ValuesByLocale": {
                            "en-US": "2c59ab2d-5662-4da5-b73f-58fb50c55507"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 3",
                        "ValuesByLocale": {
                            "en-US": "67af90c6-4b4f-44ed-b4b7-0d7d3555a04f"
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    }
                ],
                "MultiValues": [],
                "ContainerValues": [],
                "AssetValues": [
                    {
                        "Name": "Main Product Image",
                        "ValuesByLocale": {
                            "en-US": {
                                "Name": "OLD CROC.png",
                                "Url": "https://assets.uat.syndigo.com/ff420a48-80b7-49f8-8f37-bf57f54ccda0?originalFileName=true",
                                "SourceUrl": "https://assets.uat.syndigo.com/5a75588c-3452-47dd-b5e4-fbfaa408d5ce",
                                "Format": "png"
                            }
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 2",
                        "ValuesByLocale": {
                            "en-US": {
                                "Name": "TestCheese33.jpg",
                                "Url": "https://assets.uat.syndigo.com/c8f00084-417c-4ff1-8c66-3a94a7b1da83?originalFileName=true",
                                "SourceUrl": "https://images.unsplash.com/photo-1618164436241-4473940d1f5c",
                                "Format": "jpeg"
                            }
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 4",
                        "ValuesByLocale": {
                            "en-US": {
                                "Name": "TestCheese4.jpg",
                                "Url": "https://assets.uat.syndigo.com/2c59ab2d-5662-4da5-b73f-58fb50c55507?originalFileName=true",
                                "SourceUrl": "https://images.unsplash.com/photo-1480951759438-f39a376462f2",
                                "Format": "jpeg"
                            }
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    },
                    {
                        "Name": "Detailed Product View 3",
                        "ValuesByLocale": {
                            "en-US": {
                                "Name": "TestCheese2.jpg",
                                "Url": "https://assets.uat.syndigo.com/67af90c6-4b4f-44ed-b4b7-0d7d3555a04f?originalFileName=true",
                                "SourceUrl": "https://images.unsplash.com/photo-1625084561216-07dcebc2b233",
                                "Format": "jpeg"
                            }
                        },
                        "SourceParty": "",
                        "Recipient": "",
                        "Delete": false,
                        "IsExplicitNullValue": false
                    }
                ],
                "IsExplicitNullValue": false
            }
        ],
        "ProductIdentifierProperty": "",
        "ProductReferenceProperty": "",
        "Archived": false
    }
}


Was this article helpful?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.
ESC

Eddy AI, facilitating knowledge discovery through conversational intelligence