GET api/GetddlVersionlist?OBJ_ID={OBJ_ID}&TYPE={TYPE}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OBJ_ID | integer |
Required |
|
| TYPE | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ApiPostResponseOfListOfVersionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of VersionModel |
None. |
|
| Success | boolean |
None. |
|
| Message | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"ID": 1,
"OBJ_ID": 1,
"VERSION_NAME": "sample string 1",
"VERSION_NAME_DATE": "sample string 2"
},
{
"ID": 1,
"OBJ_ID": 1,
"VERSION_NAME": "sample string 1",
"VERSION_NAME_DATE": "sample string 2"
}
],
"Success": true,
"Message": [
"sample string 1",
"sample string 2"
]
}