Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Filter inputs

NameTypeDescriptionMandatoryAvailable from version
BrickIdGuid[]


CreatedDate

DateTime


UsersReceiversGuid[]The user associated with the TaskAdministratorsGuid[]The admin user associated with the task

HeadingsSubjectsstring[]The heading of the task

TextsBodiesstring[]The descriptive text of the taskDueDateFrom

IsReadboolIf the message is read by the customer

IsPublicboolIf the message is public

IsPromotedboolIf the message is promoted

EventDateFromDateTimeThe from-date for taskof message

DueDateToEventDateToDateTimeThe to-date for taskof message

IsHTMLboolIf the text contains html

Statusstring[]The status of the task, allowed values: "Created", "InProgress", "Done", "Closed"

PrioritiesPriority

string[]The priority of the task, allowed values: "High", "Medium", "Low"

...

NameTypeDescriptionAvailable from version
BrickIdGuidThe BrickId (unique id) of the task
CreatedDateDateTimeThe date the task was created
UserReceiverGuidThe user associated with the taskAdministratorGuidThe admin user associated with the task
HeadingSubjectstringThe heading of the task
TextBodystringThe descriptive text of the task
DueDateEventDateDateTimeThe due date for task
IsRead


IsPublic


IsPromoted






IsHTMLboolIf the text contains html
StatusstringThe status of the task, allowed values: "Created", "InProgress", "Done", "Closed"
PrioritystringThe priority of the task, allowed values: "High", "Medium", "Low"

...

Code Block
languagec#
themeRDark
firstline1
titleC# - Get tasks messages from a BFS instance
linenumberstrue
collapsetrue
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
sortcreation
contenttitles
labelsgetaccounttypes