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": "6a5012b7-cc7c-451d-bed6-6a6c01f00acb",
    "Email": "sample string 2",
    "Name": "sample string 3"
  },
  "CustomRuntimeProjectBots": [
    {
      "ProjectRuntimeID": "da30c5ea-5c46-497a-890f-5023801debf4",
      "ProjectRuntimeName": "sample string 2"
    },
    {
      "ProjectRuntimeID": "da30c5ea-5c46-497a-890f-5023801debf4",
      "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>da30c5ea-5c46-497a-890f-5023801debf4</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
    <CustomRuntimeProjectBot>
      <ProjectRuntimeID>da30c5ea-5c46-497a-890f-5023801debf4</ProjectRuntimeID>
      <ProjectRuntimeName>sample string 2</ProjectRuntimeName>
    </CustomRuntimeProjectBot>
  </CustomRuntimeProjectBots>
  <user>
    <Email>sample string 2</Email>
    <Name>sample string 3</Name>
    <UserID>6a5012b7-cc7c-451d-bed6-6a6c01f00acb</UserID>
  </user>
</CustomUserProjects>