GET api/GlyphSecure?word={word}&callback={callback}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| word | string |
Required |
|
| callback | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
GlyphResponseApi| Name | Description | Type | Additional information |
|---|---|---|---|
| phrase | string |
None. |
|
| data | Collection of GlyphApi |
None. |
|
| success | boolean |
None. |
|
| rowcount | integer |
None. |
|
| errormessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"phrase": "sample string 1",
"data": [
{
"glyphtype": 0,
"text": "sample string 1",
"imageurl": "sample string 2",
"imageid": 1,
"imagecount": 3
},
{
"glyphtype": 0,
"text": "sample string 1",
"imageurl": "sample string 2",
"imageid": 1,
"imagecount": 3
}
],
"success": true,
"rowcount": 3,
"errormessage": "sample string 4"
}
text/javascript
Sample:
{"phrase":"sample string 1","data":[{"glyphtype":0,"text":"sample string 1","imageurl":"sample string 2","imageid":1,"imagecount":3},{"glyphtype":0,"text":"sample string 1","imageurl":"sample string 2","imageid":1,"imagecount":3}],"success":true,"rowcount":3,"errormessage":"sample string 4"}