GET api/Project/GetProjectUsersMobile?projectId={projectId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProjectUserDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| FullName | string |
None. |
|
| UserImage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserId": 1,
"FullName": "sample string 2",
"UserImage": "sample string 3"
},
{
"UserId": 1,
"FullName": "sample string 2",
"UserImage": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfProjectUserDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpmNew.Model.MobileDTO">
<ProjectUserDTO>
<FullName>sample string 2</FullName>
<UserId>1</UserId>
<UserImage>sample string 3</UserImage>
</ProjectUserDTO>
<ProjectUserDTO>
<FullName>sample string 2</FullName>
<UserId>1</UserId>
<UserImage>sample string 3</UserImage>
</ProjectUserDTO>
</ArrayOfProjectUserDTO>