Introduce Custom Fields to Appointment Screen

During warehouse operations, you might require more flexibility in scheduling and managing appointments based on appointment-specific data. To address this need, we have added the following non-mandatory custom fields to the Appointment (AppointmentView) UI. You can use these fields to capture additional appointment-specific data, improving the ability to plan, execute, and follow up on appointments effectively.

  • Cust Field 1
  • Cust Field 2
  • Cust Field 3
  • Cust Field 4
  • Cust Field 5

Also, you can use the search option to filter records based on the above fields.

NOTE: These fields support up to a maximum of 1000 characters.

API UPDATES

To filter the details based on custom fields and to update the custom fields, we support the following custom fields for the GET and PATCH API methods for the “Appointment” entity:

  • cust_field_1
  • cust_field_2
  • cust_field_3
  • cust_field_4
  • cust_field_5

Here is a sample PATCH API example.

PATCH URL:

PATCH .../wms/lgfapi/v10/entity/appointment/{id}/

SAMPLE JSON REQUEST BODY: 

{

    "fields": 

        {

             "cust_field_1": "XXX1",

             "cust_field_2": "XXX2",

             "cust_field_3": "XXX3",

             "cust_field_4": "XXX4",

             "cust_field_5": "XXX5"

        }

}

NOTE: These fields support alphanumeric values and up to a maximum of 1000 characters. If you pass a custom field value more than 1000 characters, the API fails.

Steps to Enable

You don't need to do anything to enable this feature.