Get attachments different sizes in the API

Hello!

I’m using the /api/v2/assets/{uid}/data/{id}/ API to retrieve submissions and get attachments.

I’ve noticed that attachments have the same URL and with one size (not like v1 which)

Is there any way to get various sizes via API v2?

 "_attachments": [
        {
            "download_url": "https://kobo.humanitarianresponse.info/api/v2/assets/aD7J5eikisLVUzEDHn24Ty/data/462044074/attachments/193821527/",
            "download_large_url": "https://kobo.humanitarianresponse.info/api/v2/assets/aD7J5eikisLVUzEDHn24Ty/data/462044074/attachments/193821527/",
            "download_medium_url": "https://kobo.humanitarianresponse.info/api/v2/assets/aD7J5eikisLVUzEDHn24Ty/data/462044074/attachments/193821527/",
            "download_small_url": "https://kobo.humanitarianresponse.info/api/v2/assets/aD7J5eikisLVUzEDHn24Ty/data/462044074/attachments/193821527/",
            "mimetype": "image/jpeg",
            "filename": "omaralafa/attachments/8276aede785545faac8efae97093a4e2/b0265591-5725-40ef-aefd-f21ea09bfe8c/IMG_3683-1_6_52.JPG",
            "instance": 462044074,
            "xform": 1258579,
            "id": 193821527
        }
    ],

And via /api/v1/data/{id}/ the result is like that

        "_attachments": [
            {
                "download_url": "https://kc.humanitarianresponse.info/media/original?media_file=omaralafa%2Fattachments%2F8276aede785545faac8efae97093a4e2%2Fb0265591-5725-40ef-aefd-f21ea09bfe8c%2FIMG_3683-1_6_52.JPG",
                "download_large_url": "https://kc.humanitarianresponse.info/media/large?media_file=omaralafa%2Fattachments%2F8276aede785545faac8efae97093a4e2%2Fb0265591-5725-40ef-aefd-f21ea09bfe8c%2FIMG_3683-1_6_52.JPG",
                "download_medium_url": "https://kc.humanitarianresponse.info/media/medium?media_file=omaralafa%2Fattachments%2F8276aede785545faac8efae97093a4e2%2Fb0265591-5725-40ef-aefd-f21ea09bfe8c%2FIMG_3683-1_6_52.JPG",
                "download_small_url": "https://kc.humanitarianresponse.info/media/small?media_file=omaralafa%2Fattachments%2F8276aede785545faac8efae97093a4e2%2Fb0265591-5725-40ef-aefd-f21ea09bfe8c%2FIMG_3683-1_6_52.JPG",
                "mimetype": "image/jpeg",
                "filename": "omaralafa/attachments/8276aede785545faac8efae97093a4e2/b0265591-5725-40ef-aefd-f21ea09bfe8c/IMG_3683-1_6_52.JPG",
                "instance": 462044074,
                "xform": 1258579,
                "id": 193821527
            }
        ],

Please could any one help me in this

Any solution?