Shopdaddy.com Web Services
List / Manage Documents
Enter your merchant id below to list your documents.
MerchantId:
Document List follows ...
No documents to list
1
** At the end of each document name, in parenthesis, is the shortname used to include the document onto a webpage. If the document is part of a sub-account, there will be a "/" followed by the sub-account name. The sub-account may be called "member name" on reseller pages.
To include a document onto a webpage
** CMS resellers can substitute their own domain name for shopdaddy.com
PHP include :
<?PHP
@readfile("https://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME");
?>
JAVASCRIPT include :
<script type="text/javascript" src="https://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME&js=yes"></script>
ASP include :
<%
GotothisURL ="https://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME"
' Create the xml object
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
' Conect to specified URL
GetConnection.Open "get", GotothisURL, False
on error resume next
GetConnection.Send
ResponsePage = GetConnection.responseText
Response.write (ResponsePage)
Set GetConnection = Nothing
%>