GET api/ProjectMembers?projectId={projectId}
Get all project members based on project id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
projectId |
project id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Get all project members based on project id
Collection of ProjectMemberModelName | Description | Type | Additional information |
---|---|---|---|
MemberId | integer |
None. |
|
MemberName | string |
None. |
|
AccountTypeId | integer |
None. |
|
AccountTypeName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "MemberId": 1, "MemberName": "sample string 2", "AccountTypeId": 3, "AccountTypeName": "sample string 4" }, { "MemberId": 1, "MemberName": "sample string 2", "AccountTypeId": 3, "AccountTypeName": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfProjectMemberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <ProjectMemberModel> <AccountTypeId>3</AccountTypeId> <AccountTypeName>sample string 4</AccountTypeName> <MemberId>1</MemberId> <MemberName>sample string 2</MemberName> </ProjectMemberModel> <ProjectMemberModel> <AccountTypeId>3</AccountTypeId> <AccountTypeName>sample string 4</AccountTypeName> <MemberId>1</MemberId> <MemberName>sample string 2</MemberName> </ProjectMemberModel> </ArrayOfProjectMemberModel>