Email-secretQuestions:GET
(Difference between revisions)
Revision as of 03:16, 2 September 2014
GET /email/secretQuestions
Get dictionary of supported secret questions with text keys.
Contents |
Request
GET /email/secretQuestions
Request Headers
- Content-Type
- Required. Set this header to
application/json; charset=UTF-8
Response
Status Code
- 200 OK
- Success
Response Body
Retrieves dictionary of secret questions with text keys.
{
"questions":
{
"{tk}": "{question}",
"{tk}": "{question}",
...
},
"links": [
{
"location": "https://api.hostway.com/email/secretQuestions/",
"rel": "self"
}
]
}
Parameters
- questions - dictionary
- A dictionary of secret questions text-key with their relevant explanation in plain-text
- tk - string
- Secret question text key.
- question - string
- The question in plain-text.
- links - list
- Hypermedia to the secret questions resource
Examples
Success getting supported secret questions with text keys
Request
GET /email/secretQuestions
Response
200 OK
{
"questions":
{
"tk1": "What is question one?",
"tk2": "What is question two?",
"tk3": "What is question three?"
},
"links": [
{
"location": "https://api.hostway.com/email/secretQuestions/",
"rel": "self"
}
]
}
No secret questions supported
Request
GET /email/secretQuestions
Response
200 OK
{
"questions": {},
"links": [
{
"location": "https://api.hostway.com/email/secretQuestions/",
"rel": "self"
}
]
}