GET api.ashx/v2/remoting/url/entities.{json|xml}
Identifies the Evolution entities defined on the given URL.
Request Parameters
| Name | Type | Location | Description | Required | Default | Options | 
|---|---|---|---|---|---|---|
| Url | string | Query String | The URL to inspect | Required | 
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
	url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/remoting/url/entities.json?Url=url',
	data: { 
		'Url': 'url'
	}
}).then(function(response) {
	// use response
});Example Responses
JSON
{
  "UrlInformation": {
    "Entities": [
      {
        "TypeName": "typename",
        "Id": "id",
        "Relationship": "relationship",
        "ContentId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
        "ContentTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
        "ApplicationId": "fe65240b-044c-4292-9946-f10e0361ecff",
        "ApplicationTypeId": "2d525bad-c4df-470d-a193-a1c6d66e5c3e",
        "ContainerId": "bd519379-b61f-4e2f-b0f9-c0f28c5cceb1",
        "ContainerTypeId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f"
      },
      {
        "TypeName": "typename",
        "Id": "id",
        "Relationship": "relationship",
        "ContentId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
        "ContentTypeId": "6cdcf200-3bad-476d-af45-97b52545c337",
        "ApplicationId": "b04540ec-eb38-4fa1-b7bb-e3fde05401b4",
        "ApplicationTypeId": "44df201a-07e6-42eb-96c7-8ce7ce35aab6",
        "ContainerId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
        "ContainerTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46"
      }
    ]
  },
  "Errors": [
    "string",
    "string"
  ]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
  <UrlInformation>
    <Entities>
      <UrlEntity>
        <TypeName>typename</TypeName>
        <Id>id</Id>
        <Relationship>relationship</Relationship>
        <ContentId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContentId>
        <ContentTypeId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ContentTypeId>
        <ApplicationId>fe65240b-044c-4292-9946-f10e0361ecff</ApplicationId>
        <ApplicationTypeId>2d525bad-c4df-470d-a193-a1c6d66e5c3e</ApplicationTypeId>
        <ContainerId>bd519379-b61f-4e2f-b0f9-c0f28c5cceb1</ContainerId>
        <ContainerTypeId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ContainerTypeId>
      </UrlEntity>
      <UrlEntity>
        <TypeName>typename</TypeName>
        <Id>id</Id>
        <Relationship>relationship</Relationship>
        <ContentId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ContentId>
        <ContentTypeId>6cdcf200-3bad-476d-af45-97b52545c337</ContentTypeId>
        <ApplicationId>b04540ec-eb38-4fa1-b7bb-e3fde05401b4</ApplicationId>
        <ApplicationTypeId>44df201a-07e6-42eb-96c7-8ce7ce35aab6</ApplicationTypeId>
        <ContainerId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContainerId>
        <ContainerTypeId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ContainerTypeId>
      </UrlEntity>
    </Entities>
  </UrlInformation>
  <Errors>
    <Message>string</Message>
    <Message>string</Message>
  </Errors>
</Response> 
				