GET ProjectDataMarts/GetWithRequestTypes?projectID={projectID}&dataMartID={dataMartID}

Returns a specific data mart with the support request types

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectID

globally unique identifier

Required

dataMartID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ProjectDataMartWithRequestTypesDTO
NameDescriptionTypeAdditional information
RequestTypes

Available Request types

Collection of RequestTypeDTO

None.

ProjectID

Gets or sets the id of project

globally unique identifier

None.

Project

Gets the Name of the Project

string

None.

ProjectAcronym

Gets the Acronym of the Project

string

None.

DataMartID

Gets or sets the id of DataMart

globally unique identifier

None.

DataMart

Gets the DataMart

string

None.

Organization

Gets the Organization

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "RequestTypes": [
        {
          "Name": "sample string 1",
          "Description": "sample string 2",
          "Metadata": true,
          "PostProcess": true,
          "AddFiles": true,
          "RequiresProcessing": true,
          "Notes": "sample string 7",
          "WorkflowID": "04a01782-de92-4775-8f5b-ede3060770af",
          "Workflow": "sample string 8",
          "SupportMultiQuery": true,
          "ID": "3c674426-2db3-4939-befb-3c4a9a9341c7",
          "Timestamp": "QEA="
        },
        {
          "Name": "sample string 1",
          "Description": "sample string 2",
          "Metadata": true,
          "PostProcess": true,
          "AddFiles": true,
          "RequiresProcessing": true,
          "Notes": "sample string 7",
          "WorkflowID": "04a01782-de92-4775-8f5b-ede3060770af",
          "Workflow": "sample string 8",
          "SupportMultiQuery": true,
          "ID": "3c674426-2db3-4939-befb-3c4a9a9341c7",
          "Timestamp": "QEA="
        }
      ],
      "ProjectID": "844cfa96-d392-41c0-be61-0f2c4b878ba1",
      "Project": "sample string 2",
      "ProjectAcronym": "sample string 3",
      "DataMartID": "eac898fd-a077-4ee5-9293-c621731dac0b",
      "DataMart": "sample string 5",
      "Organization": "sample string 6"
    }
  ]
}

text/javascript

Sample:
{"results":[{"RequestTypes":[{"Name":"sample string 1","Description":"sample string 2","Metadata":true,"PostProcess":true,"AddFiles":true,"RequiresProcessing":true,"Notes":"sample string 7","WorkflowID":"04a01782-de92-4775-8f5b-ede3060770af","Workflow":"sample string 8","SupportMultiQuery":true,"ID":"3c674426-2db3-4939-befb-3c4a9a9341c7","Timestamp":"QEA="},{"Name":"sample string 1","Description":"sample string 2","Metadata":true,"PostProcess":true,"AddFiles":true,"RequiresProcessing":true,"Notes":"sample string 7","WorkflowID":"04a01782-de92-4775-8f5b-ede3060770af","Workflow":"sample string 8","SupportMultiQuery":true,"ID":"3c674426-2db3-4939-befb-3c4a9a9341c7","Timestamp":"QEA="}],"ProjectID":"844cfa96-d392-41c0-be61-0f2c4b878ba1","Project":"sample string 2","ProjectAcronym":"sample string 3","DataMartID":"eac898fd-a077-4ee5-9293-c621731dac0b","DataMart":"sample string 5","Organization":"sample string 6"}]}

application/bson

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

application/xml, text/xml

Sample:
<ProjectDataMartWithRequestTypesDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <DataMart>sample string 5</DataMart>
  <DataMartID>eac898fd-a077-4ee5-9293-c621731dac0b</DataMartID>
  <Organization>sample string 6</Organization>
  <Project>sample string 2</Project>
  <ProjectAcronym>sample string 3</ProjectAcronym>
  <ProjectID>844cfa96-d392-41c0-be61-0f2c4b878ba1</ProjectID>
  <RequestTypes>
    <RequestTypeDTO>
      <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">3c674426-2db3-4939-befb-3c4a9a9341c7</ID>
      <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
      <AddFiles>true</AddFiles>
      <Description>sample string 2</Description>
      <Metadata>true</Metadata>
      <Name>sample string 1</Name>
      <Notes>sample string 7</Notes>
      <PostProcess>true</PostProcess>
      <RequiresProcessing>true</RequiresProcessing>
      <SupportMultiQuery>true</SupportMultiQuery>
      <Workflow>sample string 8</Workflow>
      <WorkflowID>04a01782-de92-4775-8f5b-ede3060770af</WorkflowID>
    </RequestTypeDTO>
    <RequestTypeDTO>
      <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">3c674426-2db3-4939-befb-3c4a9a9341c7</ID>
      <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
      <AddFiles>true</AddFiles>
      <Description>sample string 2</Description>
      <Metadata>true</Metadata>
      <Name>sample string 1</Name>
      <Notes>sample string 7</Notes>
      <PostProcess>true</PostProcess>
      <RequiresProcessing>true</RequiresProcessing>
      <SupportMultiQuery>true</SupportMultiQuery>
      <Workflow>sample string 8</Workflow>
      <WorkflowID>04a01782-de92-4775-8f5b-ede3060770af</WorkflowID>
    </RequestTypeDTO>
  </RequestTypes>
</ProjectDataMartWithRequestTypesDTO>