> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/cortex-xsiam-developer-guide/cortex-xsiam-development-guide/indicators/relationships.md).

# Relationships

The `create_relationships` parameter in integrations creates relationships between indicators.

```programlisting
- defaultvalue: 'true'
  additionalinfo: Create relationships between indicators as part of enrichment.
  display: Create relationships
  name: create_relationships
  required: false
  type: 8
```

#### To create a relationship:

1. Create an `EntityRelationship` object with the relationship's data. If more than one relationship exists, create a list and append all of the `EntityRelationship` objects to it.

   ```programlisting
   EntityRelationship(
      name='contains',
      entity_a='1.1.1.1',
      entity_a_type='IP',
      entity_b='2.2.2.2',
      entity_b_type='IP',
      source_reliability='B - Usually reliable',
      brand='My Integration ID')
   ```
2. When setting the name of the relationship, choose a value that appears in the the predefined list of [relationships](https://xsoar.pan.dev/docs/reference/api/common-server-python#relationships.).
3. Use the `Common` object when creating the indicator and in the relationships key set the list of `EntityRelationship` objects.
4. Use `CommandResults` to set the relationships key to the list of `EntityRelationship` objects.

For more information about creating a relationship entity, see [EntityRelationship](https://xsoar.pan.dev/docs/reference/api/common-server-python#entityrelationship).

#### Example integrations

* [AlienVault OTX](https://github.com/demisto/content/tree/master/Packs/AlienVault_OTX)
* [MISP](https://github.com/demisto/content/tree/master/Packs/MISP/Integrations/MISP_V2)
* [DeHashed](https://github.com/demisto/content/tree/master/Packs/DeHashed/Integrations/DeHashed)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cortex-docs.paloaltonetworks.com/cortex-xsiam-developer-guide/cortex-xsiam-development-guide/indicators/relationships.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
