GET api/GetCustomUserProjects
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CustomUserProjectsName | Description | Type | Additional information |
---|---|---|---|
user | CustomUserBot |
None. |
|
CustomRuntimeProjectBots | Collection of CustomRuntimeProjectBot |
None. |
Response Formats
application/json, text/json
Sample:
{ "user": { "UserID": "1d2e48b3-5e56-4dc9-ba2f-b3a071d80b45", "Email": "sample string 2", "Name": "sample string 3" }, "CustomRuntimeProjectBots": [ { "ProjectRuntimeID": "712897f5-bc36-43c8-ac4e-3d221da2741f", "ProjectRuntimeName": "sample string 2" }, { "ProjectRuntimeID": "712897f5-bc36-43c8-ac4e-3d221da2741f", "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>712897f5-bc36-43c8-ac4e-3d221da2741f</ProjectRuntimeID> <ProjectRuntimeName>sample string 2</ProjectRuntimeName> </CustomRuntimeProjectBot> <CustomRuntimeProjectBot> <ProjectRuntimeID>712897f5-bc36-43c8-ac4e-3d221da2741f</ProjectRuntimeID> <ProjectRuntimeName>sample string 2</ProjectRuntimeName> </CustomRuntimeProjectBot> </CustomRuntimeProjectBots> <user> <Email>sample string 2</Email> <Name>sample string 3</Name> <UserID>1d2e48b3-5e56-4dc9-ba2f-b3a071d80b45</UserID> </user> </CustomUserProjects>