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

# Get Custom Object

Get custom object details by its ID.

<Note>
  External Documentation

  To learn more, visit the [Freshservice documentation](https://api.freshservice.com/#show_custom_object).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                     |
  | ---------------- | ------------------------------------------------------------------------------- |
  | Custom Object ID | The ID of a Custom object. Can be obtained by the `List Custom Objects` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"custom_object": {
		"id": 1000040838,
		"name": "service_item_approvals_11",
		"title": "Service Item Approvals",
		"description": "This is a sample object to store additional information about the Items available on the Service Catalog such as designated Approvers, Vendor Information and Category. When a request for an item in this list is raised, you can use this information within the workflows to enrich your automations. Check out our sample workflow “Service Item Approvals/Routing with Custom Objects”",
		"workspace_id": 2,
		"fields": [
			{
				"name": "category",
				"label": "Category",
				"type": "dropdown",
				"required": false,
				"fields": [
					{
						"name": "category_dd1",
						"label": "category_dd1",
						"required": false,
						"choices": [],
						"meta": null
					}
				],
				"choices": [
					{
						"id": 1,
						"value": "Hardware",
						"nested_options": [
							{
								"id": 2,
								"value": "Computer",
								"nested_options": [
									{
										"id": 3,
										"value": "Mac"
									}
								]
							}
						]
					}
				],
				"meta": {
					"source_name": "ticket",
					"field_name": "Category",
					"dep_dd_label": {
						"level1": "Category",
						"level2": "Sub-Category",
						"level3": "Item"
					},
					"dep_dd_name": {
						"level1": "category",
						"level2": "sub_category",
						"level3": "item_category"
					}
				}
			},
			{
				"name": "agent_group",
				"label": "Agent Group",
				"type": "lookup",
				"required": false,
				"choices": [],
				"meta": {
					"source_name": "group"
				}
			}
		],
		"meta": {
			"total_records_count": 4
		}
	}
}
```

## Workflow Library Example

[Get Custom Object with Freshservice and Send Results Via Email](https://library.blinkops.com/workflows/get-custom-object-with-freshservice-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/get-custom-object-with-freshservice-and-send-results-via-email/canvas" />
</div>
