POST Logging/FunctionalLog
Adds the functional log.
Request Information
URI Parameters
None.
Body Parameters
The parameter.
FunctionalLogParams| Name | Description | Type | Additional information |
|---|---|---|---|
| EventType |
The event type |
string |
None. |
| Category |
Gets or sets the category of the log event |
string |
None. |
| Message |
Gets or sets the message to be inserted into the log |
string |
None. |
| Component |
Gets or sets the component that originated the log event |
string |
None. |
| Source |
Gets or sets the source file that originated the log event |
string |
None. |
| Session |
Gets or sets the active session ID for the user triggering the log event |
string |
None. |
| UserUuid |
Gets or sets the active user identifier (GUID) for the user triggering the log event |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventType": "sample string 1",
"Category": "sample string 2",
"Message": "sample string 3",
"Component": "sample string 4",
"Source": "sample string 5",
"Session": "sample string 6",
"UserUuid": "sample string 7"
}
application/xml, text/xml
Sample:
<FunctionalLogParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models.Logs"> <Category>sample string 2</Category> <Component>sample string 4</Component> <EventType>sample string 1</EventType> <Message>sample string 3</Message> <Session>sample string 6</Session> <Source>sample string 5</Source> <UserUuid>sample string 7</UserUuid> </FunctionalLogParams>
Response Information
Resource Description
None.