Geodi Data Extraction API - Text Recognition Method
The token can be got by Generating a GEODI Token.
Recognize | |
|---|---|
Definition | Returns the entries found by scanners in the existing workspace for user-supplied text. |
Request | [GEODIURL]/DataExtractionHandler?op=Recognize&wsName=[WSNAME]&Text=[Text]&UserSession=[TOKEN]
|
HttpMethod | GET, POST |
Expected Errors | 401 Unauthorized access / Access denied 403 Forbidden 511 Network Authentication Required 501 Server Error |
Result value | {
"ElapsedMilliseconds":0,
"Entries":
[
{
"OriginalText":"",
"Text":"",
"StartIndex":0,
"Length":1,
"Filter":null
}
]
}
|
Example | //Request : [GEODIURL]/DataExtractionHandler?op=Recognize&wsName=PROJE&Text=10 blocks in 20th parcel
{
"ElapsedMilliseconds":0,
"Entries":
[
{
"OriginalText":"10 blocks in 20th parcel",
"Text":"10 blocks in 20 parcels",
"StartIndex":0,
"Length":20,
"Filter":null
}
]
} |
Example Applications | |