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

Lists the available objects and their metadata for your organization’s data.
In addition, the action also provides the organization encoding, as well as the maximum batch size permitted in queries.
For more information on encoding, see [Internationalization and Character Sets](https://developer.salesforce.com/docs/atlas.en-us.242.0.api.meta/api/implementation_considerations.htm#sforce_api_other_internationalization).

<Note>
  External Documentation

  To learn more, visit the [Salesforce documentation](https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_list_sobject.htm).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                                                   |
  | ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
  | If Modified Since | An optional parameter specifying a date and time.<br />The request returns records that have been modified after the specified date and time. |
</div>

## Example Output

```json theme={"dark"}
{
	"encoding": "UTF-8",
	"maxBatchSize": 200,
	"sobjects": [
		{
			"activateable": false,
			"associateEntityType": null,
			"associateParentEntity": null,
			"createable": false,
			"custom": false,
			"customSetting": false,
			"deepCloneable": false,
			"deletable": false,
			"deprecatedAndHidden": false,
			"feedEnabled": false,
			"hasSubtypes": false,
			"isInterface": false,
			"isSubtype": false,
			"keyPrefix": "<string>",
			"label": "<string>",
			"labelPlural": "<string>",
			"layoutable": false,
			"mergeable": false,
			"mruEnabled": false,
			"name": "<string>",
			"queryable": true,
			"replicateable": false,
			"retrieveable": true,
			"searchable": false,
			"triggerable": false,
			"undeletable": false,
			"updateable": false,
			"urls": {
				"rowTemplate": "2025-04-02T05:15:19.000+0000",
				"describe": "<string>",
				"sobject": "<string>"
			}
		},
		{
			"activateable": false,
			"associateEntityType": null,
			"associateParentEntity": null,
			"createable": false,
			"custom": false,
			"customSetting": false,
			"deepCloneable": false,
			"deletable": false,
			"deprecatedAndHidden": false,
			"feedEnabled": false,
			"hasSubtypes": false,
			"isInterface": false,
			"isSubtype": false,
			"keyPrefix": "<string>",
			"label": "<string>",
			"labelPlural": "<string>",
			"layoutable": false,
			"mergeable": false,
			"mruEnabled": false,
			"name": "<string>",
			"queryable": true,
			"replicateable": false,
			"retrieveable": true,
			"searchable": false,
			"triggerable": false,
			"undeletable": false,
			"updateable": false,
			"urls": {
				"rowTemplate": "2025-04-02T05:15:19.000+0000",
				"describe": "<string>",
				"sobject": "<string>"
			}
		}
	]
}
```

## Workflow Library Example

[List Objects with Salesforce and Send Results Via Email](https://library.blinkops.com/workflows/list-objects-with-salesforce-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-objects-with-salesforce-and-send-results-via-email/canvas" />
</div>
