GET api.ashx/v2/contentconversion/targetapplications.{json|xml}
Lists applications that converted content can be created in
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| ContainerId | Guid | Query String | Container Id | Required | ||
| Query | string | Query String | Text to search applications by | Optional | ||
| SourceContentId | Guid | Query String | Source Content Id | Required | ||
| SourceContentTypeId | Guid | Query String | Source Content Type Id | Required | ||
| TargetContentTypeId | Guid | Query String | Target Content Type Id | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/contentconversion/targetapplications.json?ContainerId=49fec544-6df7-4a82-872b-f8be586d5e9e&SourceContentId=49fec544-6df7-4a82-872b-f8be586d5e9e&SourceContentTypeId=49fec544-6df7-4a82-872b-f8be586d5e9e&TargetContentTypeId=49fec544-6df7-4a82-872b-f8be586d5e9e',
data: {
'ContainerId': '49fec544-6df7-4a82-872b-f8be586d5e9e',
'SourceContentId': '49fec544-6df7-4a82-872b-f8be586d5e9e',
'SourceContentTypeId': '49fec544-6df7-4a82-872b-f8be586d5e9e',
'TargetContentTypeId': '49fec544-6df7-4a82-872b-f8be586d5e9e'
}
}).then(function(response) {
// use response
});Example Responses
JSON
{
"TargetApplications": [
{
"ApplicationId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
"ApplicationTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
"HtmlName": "htmlname",
"HtmlDescription": "htmldescription",
"Url": "url",
"AvatarUrl": "avatarurl",
"Container": {
"ContainerId": "fe65240b-044c-4292-9946-f10e0361ecff",
"ContainerTypeId": "2d525bad-c4df-470d-a193-a1c6d66e5c3e",
"HtmlName": "htmlname",
"Url": "url",
"AvatarUrl": "avatarurl"
}
},
{
"ApplicationId": "bd519379-b61f-4e2f-b0f9-c0f28c5cceb1",
"ApplicationTypeId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f",
"HtmlName": "htmlname",
"HtmlDescription": "htmldescription",
"Url": "url",
"AvatarUrl": "avatarurl",
"Container": {
"ContainerId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
"ContainerTypeId": "6cdcf200-3bad-476d-af45-97b52545c337",
"HtmlName": "htmlname",
"Url": "url",
"AvatarUrl": "avatarurl"
}
}
],
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<TargetApplications>
<Application>
<ApplicationId>49fec544-6df7-4a82-872b-f8be586d5e9e</ApplicationId>
<ApplicationTypeId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ApplicationTypeId>
<HtmlName>htmlname</HtmlName>
<HtmlDescription>htmldescription</HtmlDescription>
<Url>url</Url>
<AvatarUrl>avatarurl</AvatarUrl>
<Container>
<ContainerId>fe65240b-044c-4292-9946-f10e0361ecff</ContainerId>
<ContainerTypeId>2d525bad-c4df-470d-a193-a1c6d66e5c3e</ContainerTypeId>
<HtmlName>htmlname</HtmlName>
<Url>url</Url>
<AvatarUrl>avatarurl</AvatarUrl>
</Container>
</Application>
<Application>
<ApplicationId>bd519379-b61f-4e2f-b0f9-c0f28c5cceb1</ApplicationId>
<ApplicationTypeId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ApplicationTypeId>
<HtmlName>htmlname</HtmlName>
<HtmlDescription>htmldescription</HtmlDescription>
<Url>url</Url>
<AvatarUrl>avatarurl</AvatarUrl>
<Container>
<ContainerId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ContainerId>
<ContainerTypeId>6cdcf200-3bad-476d-af45-97b52545c337</ContainerTypeId>
<HtmlName>htmlname</HtmlName>
<Url>url</Url>
<AvatarUrl>avatarurl</AvatarUrl>
</Container>
</Application>
</TargetApplications>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>