> ## 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.

# List Domains

Retrieve a list of all domains in the organization.

<Note>
  External Documentation

  To learn more, visit the [Cisco Domain Protection documentation](https://apidoc.appc.cisco.com/reference/domains_index).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                           |
  | --------- | ------------------------------------- |
  | Filter    | Filter responses.                     |
  | Limit     | The amount of records to be returned. |
  | Offset    | The offset of the returned records.   |
</div>

## Example Output

```json theme={"dark"}
{
	"version": 1,
	"status": "ok",
	"code": 200,
	"offset": 0,
	"count": 2,
	"domains": [
		{
			"id": 123,
			"created_at": "2019-07-23 11:12:13.141516+00:00",
			"updated_at": "2020-08-01 18:06:49.902724+00:00",
			"dmarc_policy": "reject",
			"dmarc_txt_record": "v=DMARC1; p=reject; sp=reject; ri=3600; rua=mailto:test-org@rua.example.com; ruf=mailto:test-org@ruf.example.com; fo=1",
			"dmarc_updated_at": "2020-08-01 16:02:33.902724+00:00",
			"dmarc_invalid": null,
			"spf_record": "v=spf1 include:spf2.example.com -all",
			"spf_updated_at": "2020-08-01 18:06:49.902724+00:00",
			"spf_invalid": null,
			"defensive": false,
			"third_party": false,
			"is_primary": true,
			"progress_state": "complete",
			"domain": "foo.example.com",
			"unicode_domain": "foo.example.com",
			"notes": "do not delete this domain",
			"domain_sets": [
				{
					"id": 27,
					"name": "Corporate Domains"
				}
			]
		},
		{
			"id": 345,
			"created_at": "2016-01-02 08:19:55.174628+00:00",
			"updated_at": "2020-08-02 11:05:11.491274+00:00",
			"dmarc_policy": "quarantine",
			"dmarc_txt_record": "v=DMARC1; pct=100; p=reject",
			"dmarc_updated_at": "2020-08-02 11:05:11.491274+00:00",
			"dmarc_invalid": "DMARC policy (p=) must be record's second tag",
			"spf_record": "v=spf1 include:spf3.example.com -all",
			"spf_updated_at": "2020-07-31 02:09:19.554280+00:00",
			"spf_invalid": "This record includes <b>20</b> DNS querying mechanisms/modifiers. SPF imposes a maximum of 10. All lookups after the 10th will receive the result 'permerr'.",
			"defensive": true,
			"third_party": false,
			"is_primary": false,
			"progress_state": "in_progress",
			"domain": "bar.example.com",
			"unicode_domain": "bar.example.com",
			"notes": "invalid domain, we need to fix DMARC and SPF records ASAP",
			"domain_sets": []
		}
	]
}
```

## Workflow Library Example

[List Domains with Cisco Domain Protection and Send Results Via Email](https://library.blinkops.com/workflows/list-domains-with-cisco-domain-protection-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/list-domains-with-cisco-domain-protection-and-send-results-via-email/canvas" />
</div>
