Button to open record in Plumsail Display form, SharePoint Online

I've created a button in my sharepoint list that says Open record. I want users to click that to open the Plumsails Display form.

I can't quite get the URL right to make it happen. The list ID is a89539ca-53fb-4f01-ac67-32bafa766bb6 and the record ID is 1

Could someone share what a complete URL looks like with the " and ' please?

Hi @cashdino,

Try this link format:

https://INSERT_DOMAIN.sharepoint.com/sites/INSERT_SITE_NAME/INSERT_SUBSITE_NAME/_layouts/15/listform.aspx?PageType=4&ListId=INSERT_LIST_ID&ID=INSERT_ITEM_ID

There are no quotation marks inside the link, but you need them if you're using it in code:

let url = 'https://yourdomain.sharepoint.com/sites/yoursite/_layouts/15/listform.aspx?PageType=4&ListId=a89539ca-53fb-4f01-ac67-32bafa766bb6&ID=1'