> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Find Lead Form Responses By Owner

Retrieve a list of lead form responses for a given owner.

<Note>
  External Documentation

  To learn more, visit the [LinkedIn documentation](https://learn.microsoft.com/en-us/linkedin/marketing/lead-sync/leadsync?view=li-lms-2026-02\&tabs=http#find-lead-form-responses-by-owner).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                                                                                                                                                                                          |
  | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Count      | The maximum number of results to return per page.                                                                                                                                                                                                                    |
  | Lead Type  | Select the lead type symbol.<br /><br />For more information, refer to the [LeadType sub-object](https://learn.microsoft.com/en-us/linkedin/marketing/lead-sync/lead-sync-schema?view=li-lms-2026-02#leadtype-sub-object) in the Lead Sync schema.                   |
  | Owner      | The owner URN only.<br /><br />**Note:** According to the selected `Owner Type`, Use a `urn:li:sponsoredAccount:...`, or a `urn:li:organization:...` URN.<br /><br />**Examples:**<br />\* `urn:li:sponsoredAccount:522529623`<br />\* `urn:li:organization:5509810` |
  | Owner Type | Select whether owner is a sponsored account or an organization.                                                                                                                                                                                                      |
  | Start      | The pagination offset indicating the starting point for the next set of results.                                                                                                                                                                                     |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                   | Description                                                                                                                                                           |
  | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Associated Entity           | The URN of the entity associated with the lead.                                                                                                                       |
  | End Time                    | The end of the submitted-at time filter.<br /><br />**Note:** Must use together with `Start Time`.                                                                    |
  | Limited To Test Leads       | Select to return only test leads, otherwise return production leads.                                                                                                  |
  | Start Time                  | The start of the submitted-at time filter.<br /><br />**Note:** Must use together with `End Time`.                                                                    |
  | Versioned Lead Gen Form URN | The versioned lead gen form URN to return responses only for that form version.<br /><br />**For Example:** `urn:li:versionedLeadGenForm:(urn:li:leadGenForm:3162,1)` |
</div>

## Example Output

```json theme={"dark"}
{
	"elements": [
		{
			"owner": {
				"sponsoredAccount": "urn:li:sponsoredAccount:522529623"
			},
			"submitter": "urn:li:person:MpGcnvaU_p",
			"versionedLeadGenFormUrn": "urn:li:versionedLeadGenForm:(urn:li:leadGenForm:3162,1)",
			"leadMetadata": {
				"sponsoredLeadMetadata": {
					"campaign": "urn:li:sponsoredCampaign:367378525"
				}
			},
			"ownerInfo": {
				"sponsoredAccountInfo": {
					"name": "Angela Test"
				}
			},
			"testLead": false,
			"associatedEntity": {
				"associatedCreative": "urn:li:sponsoredCreative:121608865"
			},
			"leadType": "SPONSORED",
			"leadMetadataInfo": {
				"sponsoredLeadMetadataInfo": {
					"campaign": {
						"name": "Brand awareness - May 3, 2022",
						"type": "SPONSORED_UPDATES",
						"id": "urn:li:sponsoredCampaign:367378525"
					}
				}
			},
			"associatedEntityInfo": {
				"associatedCreative": {
					"intendedStatus": "ACTIVE",
					"content": {
						"reference": "urn:li:ugcPost:6927151919538794496"
					},
					"id": "urn:li:sponsoredCreative:121608865"
				}
			},
			"id": "aaaabbbb-0000-cccc-1111-dddd2222eeee-5",
			"submittedAt": 1686182358881,
			"formResponse": {
				"answers": [
					{
						"answerDetails": {
							"textQuestionAnswer": {
								"answer": "Hello World-testing purpose"
							}
						},
						"questionId": 1
					}
				],
				"consentResponses": [
					{
						"accepted": true,
						"consentId": 4
					}
				]
			}
		}
	],
	"paging": {
		"count": 10,
		"start": 0,
		"total": 1,
		"links": []
	}
}
```

## Workflow Library Example

[Find Lead Form Responses by Owner with Linkedin and Send Results Via Email](https://library.blinkops.com/workflows/find-lead-form-responses-by-owner-with-linkedin-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/find-lead-form-responses-by-owner-with-linkedin-and-send-results-via-email/canvas" />
</div>
