GET ProjectOrganizations/List

Gets a list of items allowing oData Filtering criteria

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProjectOrganizationDTO
NameDescriptionTypeAdditional information
ProjectID

Gets or set the ID of project

globally unique identifier

None.

Project

Gets or sets the project

string

None.

OrganizationID

Gets or set the ID of an organization

globally unique identifier

None.

Organization

Get or set the Organization

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ProjectID": "3bc39595-8c37-4505-813b-45751950f56e",
      "Project": "sample string 2",
      "OrganizationID": "e8330738-7217-4d39-9e69-48e562b314cd",
      "Organization": "sample string 4"
    },
    {
      "ProjectID": "3bc39595-8c37-4505-813b-45751950f56e",
      "Project": "sample string 2",
      "OrganizationID": "e8330738-7217-4d39-9e69-48e562b314cd",
      "Organization": "sample string 4"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ProjectID":"3bc39595-8c37-4505-813b-45751950f56e","Project":"sample string 2","OrganizationID":"e8330738-7217-4d39-9e69-48e562b314cd","Organization":"sample string 4"},{"ProjectID":"3bc39595-8c37-4505-813b-45751950f56e","Project":"sample string 2","OrganizationID":"e8330738-7217-4d39-9e69-48e562b314cd","Organization":"sample string 4"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfProjectOrganizationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ProjectOrganizationDTO>
    <Organization>sample string 4</Organization>
    <OrganizationID>e8330738-7217-4d39-9e69-48e562b314cd</OrganizationID>
    <Project>sample string 2</Project>
    <ProjectID>3bc39595-8c37-4505-813b-45751950f56e</ProjectID>
  </ProjectOrganizationDTO>
  <ProjectOrganizationDTO>
    <Organization>sample string 4</Organization>
    <OrganizationID>e8330738-7217-4d39-9e69-48e562b314cd</OrganizationID>
    <Project>sample string 2</Project>
    <ProjectID>3bc39595-8c37-4505-813b-45751950f56e</ProjectID>
  </ProjectOrganizationDTO>
</ArrayOfProjectOrganizationDTO>