Filter inputs
Name | Type | Description | Mandatory | Available from version | |||
---|---|---|---|---|---|---|---|
BrickId | Guid[] | ||||||
CreatedDate | DateTime | ||||||
UsersReceivers | Guid[] | The user associated with the Task | Administrators | Guid[] | The admin user associated with the task | ||
Headings | Subjects | string[] | The heading of the task | ||||
TextsBodies | string[] | The descriptive text of the taskDueDateFrom | |||||
IsRead | bool | If the message is read by the customer | |||||
IsPublic | bool | If the message is public | |||||
IsPromoted | bool | If the message is promoted | |||||
EventDateFrom | DateTime | The from-date for taskof message | |||||
DueDateToEventDateTo | DateTime | The to-date for taskof message | |||||
IsHTML | bool | If the text contains html | |||||
Status | string[] | The status of the task, allowed values: "Created", "InProgress", "Done", "Closed" | |||||
PrioritiesPriority | string[] | The priority of the task, allowed values: "High", "Medium", "Low" |
...
Name | Type | Description | Available from version | |||
---|---|---|---|---|---|---|
BrickId | Guid | The BrickId (unique id) of the task | ||||
CreatedDate | DateTime | The date the task was created | ||||
UserReceiver | Guid | The user associated with the task | Administrator | Guid | The admin user associated with the task | |
Heading | Subject | string | The heading of the task | |||
TextBody | string | The descriptive text of the task | ||||
DueDateEventDate | DateTime | The due date for task | ||||
IsRead | ||||||
IsPublic | ||||||
IsPromoted | ||||||
IsHTML | bool | If the text contains html | ||||
Status | string | The status of the task, allowed values: "Created", "InProgress", "Done", "Closed" | ||||
Priority | string | The priority of the task, allowed values: "High", "Medium", "Low" |
...
Code Block | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
public static void GetActivityLogItemTaskGetActivityLogItemMessage() { var binding = new BasicHttpBinding(); binding.MaxReceivedMessageSize = Int32.MaxValue; var target = new bfsapi.bfsapiSoapClient(binding, new EndpointAddress("http://localhost:20010/bfsapi.asmx")); var req = new GetTasksRequest(); req.Credentials = new bfsapi.Credentials { UserName = GetApiUserName(), Password = GetApiPassword() }; req.identify = GetApiIdentifier(); req.Args=new GetTasksArgsGetMessagesArgs() { Status = new[] {"Done"} }; req.Fields=new GetTasksFieldsGetMessagesFields() { Status = true }; var resp = target.GetTasksGetMessages(req); } |
Blog Posts | ||||||
---|---|---|---|---|---|---|
|