Endpoint - ExtendedPropertyMapping
Get the list of extended property mapping values.
Request
Post
ExtPropertyMapRequest
Type | Field Name | Description |
---|---|---|
Guid | AuthorizationToken | Authorization token uniquely identifying each integration profile |
Sample
{
"AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb"
}
Response
ExtendedPropertyMapResponse
ExtendedPropertyMapResponse
Field Name | Type | Description |
---|---|---|
Items | ExtendedPropertyMapping[] | List of Extended Property Mapping. See Endpoint - ExtendedPropertyMapping - ExtendedPropertyMapping |
IsError | Boolean | Indicates if there is an error |
ErrorMessage | String / null | Error message |
ExtendedPropertyMapping
ExtendedPropertyMapping
Field Name | Type | Description |
---|---|---|
PropertyTitle | String | Property title |
PropertyName | String | Property Name (MAX 255 chars) |
PropertyDescription | String | Property Description |
PropertyType | String | Property 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
}
Updated over 1 year ago