Not able to override creation default route

Hi @Nikhilesh_Ram,

As I understand your need, you need an image (coming from S3) to be present alongside other fields of a record.
I suggest the following:

  • Create a smart field for the image field: (doc here) (put this in fields section in forest/yourModel.js:)
   {
      field: 'myImageField',
      type: 'File',
      get: (album) => {
        // code to get the image from record+s3
      },
      set: (record, myimage) => {
        // code to send the image to S3
      }
    }
  • Follow this example to get/store an image from S3. The example is for a smart action but the server code is the same.
  • To send larger images, configure your server to allow it. This thread matches this.

Regards