GET associations({associationId})/representatives({representativeId})/TaskList
Gets TaskList for a association
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
associationId | association identifier |
Define this parameter in the request URI. |
representativeId | representative identifier |
Define this parameter in the request URI. |
Response Information
terminology for a association
Response body formats
application/json, text/json
Sample:
[ { "Name": "sample string 1", "Count": 1, "Id": 1, "TaskListType": "MemberPayments" }, { "Name": "sample string 1", "Count": 1, "Id": 1, "TaskListType": "MemberPayments" }, { "Name": "sample string 1", "Count": 1, "Id": 1, "TaskListType": "MemberPayments" } ]
application/xml, text/xml
Sample:
<ArrayOfTaskListTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.Common.API.Transfer.Associations"> <TaskListTO> <Count>1</Count> <Id>1</Id> <Name>sample string 1</Name> <TaskListType>MemberPayments</TaskListType> </TaskListTO> <TaskListTO> <Count>1</Count> <Id>1</Id> <Name>sample string 1</Name> <TaskListType>MemberPayments</TaskListType> </TaskListTO> <TaskListTO> <Count>1</Count> <Id>1</Id> <Name>sample string 1</Name> <TaskListType>MemberPayments</TaskListType> </TaskListTO> </ArrayOfTaskListTO>
text/csv
Sample:
Name,Count,Id,TaskListType "sample string 1","1","1","MemberPayments" "sample string 1","1","1","MemberPayments" "sample string 1","1","1","MemberPayments"