[]
Gets user functions.
Responses
[200] Success
Type: [application/json]
[403] Forbidden
Type: [application/json]
Updates user functions.
Request Body
Description: User functions update request model. For example: { "CSharp": "", "VisualBasic": "" }
Type: application/json
Responses
[204] No Content
[400] Bad Request
Type: [application/json]
[403] Forbidden
Type: [application/json]
Builds user functions.
Request Body
Description: User functions build request model.
Type: application/json
Responses
[200] Success
Type: [text/plain], [application/json], [text/json]
[400] Bad Request
Type: [application/json]
[403] Forbidden
Type: [application/json]
Response model for UserFunctions.
| Name | Type | Description |
|---|---|---|
| language | Language | |
| sourceCodeNullable | string | User functions code. |
Enum:
CSharpVisualBasicReporting plugin error
| Name | Type | Description |
|---|---|---|
| codeNullable | string | error code |
| messageNullable | string | error message |
| contextNullable | string | error context |
Response model for building UserFunctions.
| Name | Type | Description |
|---|---|---|
| succeeded | Boolean | Whether a compilation was successful. |
| compilationInfosNullable | Array<CompilationResult> |
Compilation info. |
| Name | Type |
|---|---|
| severity | Severity |
| messageNullable | string |
| lineNumber | int32 |
| characterNumber | int32 |
Enum:
InfoWarningErrorRequest model for building UserFunctions.
| Name | Type | Description |
|---|---|---|
| languageRequired | Language | |
| codeRequired | string | User functions code. |