Skip to main content
JSON Manual Created Edited

Dialog Capture

Input URI

{base url} + view/PRECAPTURE



Active Methods

POST



JSON Schema

Details

{
    "CAPTURE": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "object",
        "properties": {
            "Argument": {
                "type": "object",
                "properties": {
                    "EXPORT_PATH": {
                        "description": "Save Path",
                        "type": "string"
                    },
                    "VIEW_TYPE": {
                        "description": "Preview Picture Type",
                        "type": "string",
                        "enum": [
                            "FIBR"
                        ]
                    },
                    "OPTION": {
                        "description": "Option for Capture",
                        "type": "object",
                        "Properties": {
                            "ID": {
                                "description": "Picture Type ID Number",
                                "Type": "integer"
                            }
                        }
                    }
                }
            }
        }
    }
}


Examples

Dialog Capture

{
    "Argument": {
        "EXPORT_PATH": "C:\\MIDAS\\CaptureTest\\Test.jpg",
        "VIEW_TYPE": "FIBR",
        "OPTION": {
            "ID": 1
        }
    }
}


Specifications

No. Description Key Value Type Default Required

1

Image File Save Path & File Name

"EXPORT_PATH"

String

-

Required

2

Preview Picture Type

 • Fiber Division of Section: "FIBR"

"VIEW_TYPE"

String

-

Required

3

Image File Save Path & File Name

"OPTION"

Object

-

Required

(1)

Picture Type ID Number

"ID"

Integer

-

Required



0
Was this article helpful?