GET api/GetCustomUserProjects

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CustomUserProjects
NameDescriptionTypeAdditional information
user

CustomUserBot

None.

CustomRuntimeProjectBots

Collection of CustomRuntimeProjectBot

None.

Response Formats

application/json, text/json

Sample:
{
  "user": {
    "UserID": "05c6864d-654a-46b3-83e2-061faa914613",
    "Email": "sample string 2",
    "Name": "sample string 3"
  },
  "CustomRuntimeProjectBots": [
    {
      "ProjectRuntimeID": "0858185f-bb66-4829-a9eb-2ac8cb304143",
      "ProjectRuntimeName": "sample string 2"
    },
    {
      "ProjectRuntimeID": "0858185f-bb66-4829-a9eb-2ac8cb304143",
      "ProjectRuntimeName": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<CustomUserProjects xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <CustomRuntimeProjectBots>
    <CustomRuntimeProjectBot>
      <ProjectRuntimeID>0858185f-bb66-4829-a9eb-2ac8cb304143</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
    <CustomRuntimeProjectBot>
      <ProjectRuntimeID>0858185f-bb66-4829-a9eb-2ac8cb304143</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
  </CustomRuntimeProjectBots>
  <user>
    <Email>sample string 2</Email>
    <Name>sample string 3</Name>
    <UserID>05c6864d-654a-46b3-83e2-061faa914613</UserID>
  </user>
</CustomUserProjects>