Creating Links to attachments in CRM

Creating Links to attachments in CRM

I have created an application in Zoho Creator that incorporates some information from CRM.

One of the things I am trying to do is create links in the creator app to Attachments in CRM.

When you request the related list for attachments it returns an object like the below.

I am at a loss as to how to create a url from the data contained in the below object as when you click through on any of the attachments none of the urls in the destination objects seem to be related. Any ideas?

{
    "data": [
        {
            "Owner": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013",
                "email": "patricia.b@zylker.com"
            },
            "Modified_Time": "2020-07-24T18:12:43+05:30",
            "File_Name": "Screen Shot 2020-07-21 at 11.27.04 PM.png",
            "Created_Time": "2020-07-24T18:12:43+05:30",
            "Size": "362207",
            "Parent_Id": {
                "name": "related records",
                "id": "4150868000002728001"
            },
            "$editable": true,
            "$file_id": "iewimc754be98ef89473fbf474139d65f758a",
            "$type": "Attachment",
            "$se_module": "Leads",
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013",
                "email": "patricia@zylker.com"
            },
            "$state": "save",
            "id": "4150868000002728012",
            "Created_By": {
                "name": "Patricia Boyle",
                "id": "4150868000000225013",
                "email": "patricia@zylker.com"
            },
            "$link_url": null
        }
    ],
    "info": {
        "per_page": 200,
        "count": 1,
        "page": 1,
        "more_records": false
    }
}