Returns a list of link providers, each of which supplies links to a type of objects in the site.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRContentAPI | SRContentAPI | GET, POST | Server. |
This method lists Link Providers that aggregate links to different types of content within Luminate Online system. Use this API to select a link provider ID required by the listLinks method.
The for_email parameter limits the list of providers returned to those that are suitable for embedding in the body of outgoing email messages.
See topic Common Parameters.
Optional. Specifies whether the text being edited is intended for display in an email message: "true" or "false". Some types of links are only applicable, or are not applicable, within email messages.
Type xsd:boolean.
Default is true.
See topic Common Parameters.
Optional. Specifies whether the text being edited is intended for display in an email message: "true" or "false". Some types of links are only applicable, or are not applicable, within email messages.
Type xsd:boolean.
Default is true.
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?> <listLinkProvidersResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <provider> <label>Link Type A</label> <typeId>42</typeId> </provider> <provider> <label>Link Type B</label> <typeId>43</typeId> </provider> </listLinkProvidersResponse>JSON response
{"listLinkProvidersResponse":{"provider":[{"label":"Link Type A","typeId":"42"},{"label":"Link Type B","typeId":"43"}]}}