Skip to main content
JSON Manual Created Edited

Member Assignment

Input URI

{base url} + db/MEMB



Active Methods

POST, GET, PUT, DELETE



JSON Schema

Details

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "Argument": {
        "type": "object",
        "properties": {
            "AELEM": {
                "description": "ElementLists",
                "type": "array",
                "items": {
                    "type": "integer"
                }
            },
            "bREVERSE": {
                "description": "ReverseLocalDirection",
                "type": "boolean"
            }
        }
    }
}


Examples

Import to Json

{
    "Assign": {
        "1": {
            "AELEM": [
                36,
                48,
                46,
                49,
                47
            ]
        },
        "2": {
            "AELEM": [
                32,
                43
            ],
            "bREVERSE": true
        }
    }
}


Specifications

NO.

Description

Key

Value Type

Default

Required

1

Element Lists

"AELEM"

Array

[Integer]

-

Required

2

Reverse Local Direction

"bREVERSE"

Boolean

false

Optional

0
Was this article helpful?