Znode

Build Version:

GET messageconfigs

Gets a list of message configs.

Request Information

» Expands

Name Description Usage
messageType This will retrieve the related message type. GET messageconfigs?expand=messagetype

» Filters

Name Description Usage
Key This will filter the request by the Message config Key. GET messageconfigs?filter=key~{operator}~{value}
localeId This will filter the request by locale ID. GET messageconfigs?filter=localeid~{operator}~{value}
messageTypeId This will filter the request by message Type Id. GET messageconfigs?filter=messagetypeid~{operator}~{value}
portalId This will filter the request by portal ID. GET messageconfigs?filter=portalid~{operator}~{value}

» Paging

Name Description Usage
index The index to retrieve when requesting paged results. GET messageconfigs?page=index~{value}
size The size of the page when retrieving paged results. GET messageconfigs?page=size~{value}

Response Information

» Response Body Formats

If this endpoint supports expands, they will be included in the sample response body below. However, please note that expands are NOT included in the response body by default. Expands are only included in the response body if they came through as part of the request.

Sample:
	{
  "MessageConfigs": [
    {
      "Description": "",
      "Key": "CurrentStoreSpecial",
      "LocaleId": 43,
      "MessageConfigId": 1,
      "MessageType": {
        "DisplayOrder": 1,
        "IsActive": true,
        "MessageTypeId": 1,
        "Name": "Message Block"
      },
      "MessageTypeId": 1,
      "PageSeoName": "",
      "PortalId": 1,
      "Value": "Current Store Special",
      "PortalName": null,
      "CustomErrorMessage": null
    }
  ],
  "PageIndex": null,
  "PageSize": null,
  "TotalPages": null,
  "TotalResults": null,
  "ErrorCode": null,
  "ErrorMessage": null,
  "StackTrace": null,
  "AllowHtmlResponse": false,
  "HasError": false,
  "StringResponse": null
}