<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docs.hostway.com/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docs.hostway.com/index.php?action=history&amp;feed=atom&amp;title=Email-domain-usernames-mailboxName-secrets%3AGET</id>
		<title>Email-domain-usernames-mailboxName-secrets:GET - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docs.hostway.com/index.php?action=history&amp;feed=atom&amp;title=Email-domain-usernames-mailboxName-secrets%3AGET"/>
		<link rel="alternate" type="text/html" href="http://docs.hostway.com/index.php?title=Email-domain-usernames-mailboxName-secrets:GET&amp;action=history"/>
		<updated>2026-05-05T13:34:57Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.18.0</generator>

	<entry>
		<id>http://docs.hostway.com/index.php?title=Email-domain-usernames-mailboxName-secrets:GET&amp;diff=1733&amp;oldid=prev</id>
		<title>Mike.robski: 1 revision: Release 98</title>
		<link rel="alternate" type="text/html" href="http://docs.hostway.com/index.php?title=Email-domain-usernames-mailboxName-secrets:GET&amp;diff=1733&amp;oldid=prev"/>
				<updated>2014-09-15T13:53:38Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision: Release 98&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 13:53, 15 September 2014&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Mike.robski</name></author>	</entry>

	<entry>
		<id>http://docs.hostway.com/index.php?title=Email-domain-usernames-mailboxName-secrets:GET&amp;diff=1732&amp;oldid=prev</id>
		<title>Jerry.dimitrov: /* Status Code */</title>
		<link rel="alternate" type="text/html" href="http://docs.hostway.com/index.php?title=Email-domain-usernames-mailboxName-secrets:GET&amp;diff=1732&amp;oldid=prev"/>
				<updated>2014-09-02T17:00:00Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;Status Code&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= GET /email/{domain}/usernames/{mailboxName}/secrets =&lt;br /&gt;
Retrieves a list of text keys for all mailbox(alias) secret questions.&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
== Request ==&lt;br /&gt;
&amp;lt;code&amp;gt;GET /email/{domain}/usernames/{mailboxName}/secrets&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Request Parameters ====&lt;br /&gt;
; domain - ''string''&lt;br /&gt;
: The specific domain for which the call will retrieve the list&lt;br /&gt;
; maiboxName - ''string''&lt;br /&gt;
: The name of the mailbox&lt;br /&gt;
&lt;br /&gt;
=== Request Headers ===&lt;br /&gt;
&lt;br /&gt;
; Content-Type&lt;br /&gt;
: Required. Set this header to &amp;lt;code&amp;gt;application/json; charset=UTF-8&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Response ==&lt;br /&gt;
&lt;br /&gt;
=== Status Code ===&lt;br /&gt;
; 200 OK&lt;br /&gt;
: Success&lt;br /&gt;
&lt;br /&gt;
; 404 Not Found&lt;br /&gt;
: The domain name or mailbox does not exist.&lt;br /&gt;
&lt;br /&gt;
=== Response Body ===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;list&amp;quot;: [ &amp;quot;{tk}&amp;quot;, &amp;quot;{tk}&amp;quot;, &amp;quot;{tk}&amp;quot; ],&lt;br /&gt;
    &amp;quot;links&amp;quot;: [&lt;br /&gt;
        {&lt;br /&gt;
            &amp;quot;href&amp;quot;: &amp;quot;&amp;lt;/nowiki&amp;gt;{{APIBaseURL}}&amp;lt;nowiki&amp;gt;/email/{domain}/usernames/{mailboxName}/secrets&amp;quot;,&lt;br /&gt;
            &amp;quot;rel&amp;quot;: &amp;quot;self&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
    ]&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Parameters ====&lt;br /&gt;
; list - 'list'&lt;br /&gt;
: A list of secret questions of the account&lt;br /&gt;
:; tk - ''string'' (Unique)&lt;br /&gt;
:: Unique secret question text key.&lt;br /&gt;
; links - 'list'&lt;br /&gt;
:[[Hypermedia]] to the account secret questions resource&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Success scenario ===&lt;br /&gt;
'''Request'''&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
GET /email/test.com/usernames/test-mailbox/secrets&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Response'''&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;list&amp;quot;: [ &amp;quot;tk1&amp;quot;, &amp;quot;tk2&amp;quot;, &amp;quot;tk3&amp;quot; ],&lt;br /&gt;
    &amp;quot;links&amp;quot;: [&lt;br /&gt;
        {&lt;br /&gt;
            &amp;quot;href&amp;quot;: &amp;quot;&amp;lt;/nowiki&amp;gt;{{APIBaseURL}}&amp;lt;nowiki&amp;gt;/email/test.com/usernames/test-mailbox/secrets&amp;quot;,&lt;br /&gt;
            &amp;quot;rel&amp;quot;: &amp;quot;self&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
    ]&lt;br /&gt;
}&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Email API|Email API]]&lt;br /&gt;
&lt;br /&gt;
{{disqus}}&lt;br /&gt;
[[Category:Hostway API]]&lt;br /&gt;
[[Category:Email API]]&lt;/div&gt;</summary>
		<author><name>Jerry.dimitrov</name></author>	</entry>

	</feed>