Endpoint - ExtendedPropertyMapping

Get the list of extended property mapping values.

Request

Post

ExtPropertyMapRequest

TypeField NameDescription
GuidAuthorizationTokenAuthorization token uniquely identifying each integration profile

Sample

{
  "AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb"
}

Response

ExtendedPropertyMapResponse

Field NameTypeDescription
ItemsExtendedPropertyMapping[]List of Extended Property Mapping. See Endpoint - ExtendedPropertyMapping - ExtendedPropertyMapping
IsErrorBooleanIndicates if there is an error
ErrorMessageString / nullError message

ExtendedPropertyMapping

Field NameTypeDescription
PropertyTitleStringProperty title
PropertyNameStringProperty Name (MAX 255 chars)
PropertyDescriptionStringProperty Description
PropertyTypeStringProperty Type: ORDER, ITEM
{
  "Items": [
    {
      "PropertyTitle": "Safe Place note",
      "PropertyName": "SafePlace1",
      "PropertyDescription": "Safe place note for delivery",
      "PropertyType": "ORDER"
    },
    {
      "PropertyTitle": "Extended Cover flag",
      "PropertyName": "ExtendedCover",
      "PropertyDescription": "Some description",
      "PropertyType": "ITEM"
    }
  ],
  "IsError": false,
  "ErrorMessage": null
}