GET api/projectone/standaloneSpaces?projectId={projectId}

Get all standalone spaces based on project base id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Get all standalone spaces based on project base id

API_Data_ListOfSpaceObject
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

ErrorInfo

None.

Data

Collection of SpaceObject

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Error": {
    "ErrorCode": 1,
    "ErrorMessage": "sample string 1"
  },
  "Data": [
    {
      "SpaceName": "sample string 1",
      "Category": 2,
      "ProjectId": 3,
      "SpaceId": 4
    },
    {
      "SpaceName": "sample string 1",
      "Category": 2,
      "ProjectId": 3,
      "SpaceId": 4
    }
  ]
}

application/xml, text/xml

Sample:
<API_Data_ArrayOfSpaceObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
  <Data>
    <SpaceObject>
      <ProjectId>3</ProjectId>
      <SpaceId>4</SpaceId>
      <Category>2</Category>
      <SpaceName>sample string 1</SpaceName>
    </SpaceObject>
    <SpaceObject>
      <ProjectId>3</ProjectId>
      <SpaceId>4</SpaceId>
      <Category>2</Category>
      <SpaceName>sample string 1</SpaceName>
    </SpaceObject>
  </Data>
  <Error>
    <ErrorCode>1</ErrorCode>
    <ErrorMessage>sample string 1</ErrorMessage>
  </Error>
  <Success>true</Success>
</API_Data_ArrayOfSpaceObject>