GET api/Binder/GetUserBinderProjects?userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BinderProject
NameDescriptionTypeAdditional information
ProjectId

integer

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectId": 1,
    "Name": "sample string 2"
  },
  {
    "ProjectId": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBinderProject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.Entities">
  <BinderProject>
    <Name>sample string 2</Name>
    <ProjectId>1</ProjectId>
  </BinderProject>
  <BinderProject>
    <Name>sample string 2</Name>
    <ProjectId>1</ProjectId>
  </BinderProject>
</ArrayOfBinderProject>