StarterTemplate ASP.NET Host

<back to all web services

RequestProjectById

Project Service

The following routes are available for this service:
GET/service/api/v1/projects/{ProjectId}Returns information on a single projectThe project with the specified ID must exist. The authenticating user must have rights to access the project.
Parameters:
NameParameterData TypeRequiredDescription
ProjectIdpathintYesThe ID of the project you need to get

To override the Content-type in your clients HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/RequestProjectById HTTP/1.1 
Host: rest.qacomplete.smartbear.com 
Content-Type: application/xml
Content-Length: length

<RequestProjectById xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Projects">
  <ProjectId>0</ProjectId>
</RequestProjectById>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ResponseProjectSingle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Projects">
  <DateCreated>0001-01-01T00:00:00</DateCreated>
  <DateUpdated>0001-01-01T00:00:00</DateUpdated>
  <DeptId>0</DeptId>
  <DeptName>String</DeptName>
  <Id>0</Id>
  <IsActive>false</IsActive>
  <NbrFiles>0</NbrFiles>
  <NbrNotes>0</NbrNotes>
  <ProjName>String</ProjName>
  <__permissions xmlns:d2p1="http://schemas.datacontract.org/2004/07/SwpStack.Service.Entity.Common">
    <d2p1:Acl>0</d2p1:Acl>
  </__permissions>
</ResponseProjectSingle>