GET api/DatabaseSchema/Functions
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Function| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnDataType | string |
None. |
|
| ReturnMaxLength | integer |
None. |
|
| ReturnColumns | Collection of Column |
None. |
|
| ObjectId | integer |
None. |
|
| Name | string |
None. |
|
| Schema | string |
None. |
|
| Owner | string |
None. |
|
| LastUpdated | date |
None. |
|
| Definition | string |
None. |
|
| Parameters | Collection of Parameter |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "2",
"$type": "WebPortalRTFAPI.Models.Schema.Function, WebPortalRTFAPI",
"ReturnDataType": "sample string 1",
"ReturnMaxLength": 2,
"ReturnColumns": {
"$id": "3",
"$values": [
{
"$id": "4",
"$type": "WebPortalRTFAPI.Models.Schema.Column, WebPortalRTFAPI",
"IsIdentity": true,
"Name": "sample string 2",
"DataType": "sample string 3",
"MaxLength": 4
},
{
"$ref": "4"
}
]
},
"ObjectId": 3,
"Name": "sample string 4",
"Schema": "sample string 5",
"Owner": "sample string 6",
"LastUpdated": "2026-06-05T19:41:11.7076255-04:00",
"Definition": "sample string 8",
"Parameters": {
"$id": "5",
"$values": [
{
"$id": "6",
"$type": "WebPortalRTFAPI.Models.Schema.Parameter, WebPortalRTFAPI",
"IsOutput": true,
"DefaultValue": {
"$id": "7",
"$type": "System.Object, mscorlib"
},
"Name": "sample string 3",
"DataType": "sample string 4",
"MaxLength": 5
},
{
"$ref": "6"
}
]
}
},
{
"$ref": "2"
}
]