Integration Links
Integration links connect an Idea to a record in an external tool — for example the Zendesk tickets or Intercom conversations that prompted a piece of feedback.
Integration link object
Endpoints
Returns a list of links between ideas and external integration records — for example the Zendesk tickets linked to an idea.
At least one of idea_idx or type must be supplied. Use idea_idx to fetch the links for a single idea, or type to page through every link of that integration type across the company (each row carries its own idea_idx, so results can be grouped by idea client-side).
API key in Authorization header with Bearer prefix (recommended)
Limits the number of items on a page
20The after cursor - used for pagination. Pass the previous response's pagination.endCursor.
A unique identifier for the idea. Only fetch links for this idea. Required unless type is supplied.
Only fetch links of this integration type, e.g. zendesk. Required unless idea_idx is supplied.
Successfully returned a list of integration links
Invalid request
The requested idea could not be found
Neither idea_idx nor type was supplied
GET /v1/integration-links HTTP/1.1
Host: api.frill.co
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"idx": "idea_integration_link_abcd1234",
"idea_idx": "idea_abcd1234",
"type": "zendesk",
"link_ref": "48221",
"meta": {
"url": "https://example.zendesk.com/agent/tickets/48221"
},
"created_at": "2026-03-04T11:22:03.000000Z",
"updated_at": "2026-03-04T11:22:03.000000Z"
}
],
"pagination": {
"total": 4300,
"count": 100,
"hasNextPage": true,
"startCursor": "WyIyMDI2LTAzLTA0VDExOjIyOjAzLjAwMDAwMFoiLDFd",
"endCursor": "WyIyMDI2LTAzLTA0VDExOjIyOjAzLjAwMDAwMFoiLDJd"
},
"meta": []
}Last updated