· Dan · snippets · 1 min read
ConnectWise Deep Linking
All the ways to link directly to entities deep inside ConnectWise Manage
If you are building a workflow where you want to provide a link to a record in ConnectWise PSA, there are both documented and undocumented ways to reference a record.
Service Ticket
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=ServiceFV&recid={{ $json.id }}&companyName={{ company_id }}
Invoices
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=InvoiceFv&recid={{ $json.id }}&companyName={{ company_id }}
Projects
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=ProjectHeaderFV&recid={{ $json.id }}&companyName={{ company_id }}
Opportunities
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=OpportunityFV&recid={{ $json.id }}&companyName={{ company_id }}
Companies
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=CompanyFV&recid={{ $json.id }}&companyName={{ company_id }}
Configuration Items
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=ConfigFV&recid={{ $json.id }}&companyName={{ company_id }}
Time Entries
https://na.myconnectwise.net/v4_6_release/services/system_io/router/openrecord.rails?recordType=TimeEntryFV&recid={{ $json.id }}&companyName={{ company_id }}