> ## 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 Object Attributes

Get the attributes by a give object type and ID.

<Note>
  External Documentation

  To learn more, visit the [ThreatQuotient documentation](https://docs.threatq.com/rest_api#tag/Object-Attributes/paths/~1%7Bobject_type%7D~1%7Bobject_type_id%7D~1attributes/get).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter   | Description                                      |
  | ----------- | ------------------------------------------------ |
  | Limit       | The maximum amount of results that are returned. |
  | Object ID   | The ID of the object to get the attributes from. |
  | Object Type | The type of the object.                          |
  | Offset      | The offset of the results that are returned.     |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                    |
  | --------- | -------------------------------------------------------------------------------------------------------------- |
  | Include   | A comma-separated list of related object names to include in the response.                                     |
  | Sort      | The field to sort the response by. Adding a starting `-` sign will reverse the sort order. For example: `-id`. |
</div>

## Example Output

```json theme={"dark"}
{
	"total": 2,
	"data": [
		{
			"id": 206371,
			"indicator_id": 136395,
			"attribute_id": 33,
			"value": "<string>",
			"created_at": "<string>",
			"updated_at": "<string>",
			"name": "<string>",
			"attribute": {
				"id": 59,
				"name": "<string>",
				"created_at": "<string>",
				"updated_at": "<string>"
			}
		},
		{
			"id": 473785,
			"indicator_id": 41607,
			"attribute_id": 104,
			"value": "<string>",
			"created_at": "<string>",
			"updated_at": "<string>",
			"name": "<string>",
			"attribute": {
				"id": 218,
				"name": "<string>",
				"created_at": "<string>",
				"updated_at": "<string>"
			}
		}
	]
}
```

## Workflow Library Example

[List Object Attributes with Threatquotient and Send Results Via Email](https://library.blinkops.com/workflows/list-object-attributes-with-threatquotient-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-object-attributes-with-threatquotient-and-send-results-via-email/canvas" />
</div>
