Entity path

In an outbound JSON request, entity path is the path above the endpoint field defined in the field mapping.

For example, in a Case Exchange integration instance, all endpoint fields are defined as properties.**** in the field mapping. The following example is an outbound request body in the endpoint:

{
	"entities": [{
		"properties": {
			"DisplayLabel": "Create New Incident",
			"Description": "create the new incident record",
			"ImpactScope": "MultipleUsers",
			"Urgency": "SlightDisruption",
			"Solution": "",
			"Id": "IM118216"
		},
		"ext_properties": {
			"Operation": "Update",
			"ExternalStatus": "Open",
			"ExternalId": "IM45167",
			"ExternalSystem": "SM",
			"ExternalEntityType": "Incident"
		},
		"Comments": [{
			"Body": "IM45167",
			"CreatedTime": 1402038076398
		}],
		"entity_type": "Incident"
	}]
}

In this particular example, one of the endpoint fields is properties.Displaylabel, so the entity path is entities[0].

Note RESTful protocols other than JSON are not supported.