REST Import API Error - Interaction Table (null value in entry: display_value)Issue A rest request towards an import/staging taple can result in the following response { "error": { "message": "java.lang.NullPointerException: null value in entry: display_value=null", "detail": "null value in entry: display_value=null Check logs for error trace or enable glide.rest.debug property to verify REST request processing" }, "status": "failure", "session": { "notifications": [], "debug_logs": [] }} The staging table record is created and the data is transformed but the response can not be used by the third party ReleaseAllCauseThis is due to ACL's on the target table. The user importing the data needs to have read access to certain fields on the target table. { "import_set": "ISET0014018", "staging_table": "u_stagingtable_import", "result": [ { "transform_map": "Transform Map being user", "table": "u_target_table", "display_name": "number", "display_value": "NMBR0000233", "record_link": "https://instance.service-now.com/api/now/table/u_target_table/f9ecf97f1b6a50102e57fc451a4bcbf6" } ], "session": { "notifications": [], "debug_logs": [] }}In this case the number on the target table needs to be readable. To confirm if ACL's come into play you can do the following: If needed unselect the "web services only" option on the user running the import rest request.Enable security debugging.Impersonate the user running the rest import.As that user browse to the target table of the rest import.Validate which ACL's prevent the user from reading the appropriate valueAdd or change ACL's for the table so that the rest import user can read the required field.