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": "6d142163-aedf-4038-9aa5-bd0d10811940",
    "Email": "sample string 2",
    "Name": "sample string 3"
  },
  "CustomRuntimeProjectBots": [
    {
      "ProjectRuntimeID": "51abc313-1c96-4620-aaec-b198e4db0ae7",
      "ProjectRuntimeName": "sample string 2"
    },
    {
      "ProjectRuntimeID": "51abc313-1c96-4620-aaec-b198e4db0ae7",
      "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>51abc313-1c96-4620-aaec-b198e4db0ae7</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
    <CustomRuntimeProjectBot>
      <ProjectRuntimeID>51abc313-1c96-4620-aaec-b198e4db0ae7</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
  </CustomRuntimeProjectBots>
  <user>
    <Email>sample string 2</Email>
    <Name>sample string 3</Name>
    <UserID>6d142163-aedf-4038-9aa5-bd0d10811940</UserID>
  </user>
</CustomUserProjects>