Bugs_Load Operation

Applies to QAComplete 14.3, last modified on February 19, 2024
Since release 10.2, this functionality is obsolete and is supported for backward compatibility only. We recommend that you use QAComplete REST API to access and manage data in QAComplete.

Returns a defect by its ID. To specify the project that contains the defect, use the ProjId value in the AuthenticationData object in the request body.

To specify a project that contains the defect, use the ProjId value in the AuthenticationData object in the request body. To search for the defect in several projects, use the ProjIds value to specify the list of projects IDs in the AuthenticationData object.

To get several or all defects, use Bugs_LoadByCriteria.

Requirements

The authenticating user must belong to a user group that has the Read privilege for Defects.

Parameters

The operation uses the following parameters:

AuthenticationData  :  AuthenticationData, required

An AuthenticationData object with the login information and the ID of the project (or the list of project IDs) that contains the defect.

BugId  :  integer, required

The defect ID.

Result

A Bug object that contains the defect information.

Example

Sample Code

To view sample code that shows how to use the Bugs_Load operation to get a defect by its ID, see Get Items by ID.

Sample Request XML

POST /psws/psws.asmx HTTP/1.1
Host: myteam.mysite.com
Content-Type: text/xml; charset=utf-8
Content-Length: 478 {Insert an appropriate value here}
SOAPAction: "http://www.pragmaticsw.com/Bugs_Load"
 

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Bugs_Load xmlns="http://www.pragmaticsw.com/">
      <AuthenticationData>
        <AppCode>agSP</AppCode>
        <DeptId>7154</DeptId>
        <ProjId>1032</ProjId>
        <UserId>25315</UserId>
        <PassCode>p@ssword</PassCode>
      </AuthenticationData>
      <BugId>5</BugId>
    </Bugs_Load>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

POST /psws/psws.asmx HTTP/1.1
Host: myteam.mysite.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: 486 {Insert an appropriate value here}
 

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Bugs_Load xmlns="http://www.pragmaticsw.com/">
      <AuthenticationData>
        <AppCode>agSP</AppCode>
        <DeptId>7154</DeptId>
        <ProjId>1032</ProjId>
        <UserId>25315</UserId>
        <PassCode>p@ssword</PassCode>
      </AuthenticationData>
      <BugId>5</BugId>
    </Bugs_Load>
  </soap12:Body>
</soap12:Envelope>

Sample Response XML

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: 2234 {The server returns an appropriate value here}
 

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Bugs_LoadResponse xmlns="http://www.pragmaticsw.com/">
      <Bugs_LoadResult>
        <CustomFields>
          <string>0.9.19</string>
          <string>1.0.24</string>
        </CustomFields>
        <CustomFieldNames>
          <string>Found in build</string>
          <string>Fixed in build</string>
        </CustomFieldNames>
        <BugId>13254</BugId>
        <Title>Floating toolbar improvements</Title>
        <StatusCode>Resolved</StatusCode>
        <PriorityCode>2-Fix Soon</PriorityCode>
        <HowFoundCode>Test-Ad hoc</HowFoundCode>
        <ResolutionCode>Fixed</ResolutionCode>
        <AssigneeUserId>27942</AssigneeUserId>
        <OpenedBy>27568</OpenedBy>
        <ClosedBy>27942</ClosedBy>
        <ResolvedBy>27568</ResolvedBy>
        <Description><![CDATA[The design of the floating toolbar needs improvement so that it’s clearer what the user needs to do.]]></Description>
        <Resolution>Resolved by Susan McLaren on 24-Jun-2014 at 03:55 PM</Resolution>
        <OwnerUserId>27572</OwnerUserId>
        <TestCaseId>0</TestCaseId>
        <FolderId>52359</FolderId>
        <EstHrs>0.000</EstHrs>
        <EstStart>2014-06-10T10:00:00</EstStart>
        <EstFinish>2014-06-13T10:00:00</EstFinish>
        <PctComplete>100</PctComplete>
        <ActHrs>0.000</ActHrs>
        <ActualStart>2014-06-17T00:00:00</ActualStart>
        <ActFinish>2014-06-31T00:00:00</ActFinish>
        <EstHrsRemaining>0.000</EstHrsRemaining>
        <DateOpened>2014-05-26T15:54:21.093</DateOpened>
        <DateResolved>2014-06-24T15:55:25</DateResolved>
        <DateClosed>0001-01-01T00:00:00</DateClosed>
        <DateUpdated>2014-06-31T05:54:22</DateUpdated>
        <ProjId>17823</ProjId>
        <DateCreated>2014-05-26T15:54:21.093</DateCreated>
        <UpdateUserId>27534</UpdateUserId>
        <OriginalId>0</OriginalId>
        <ImportId>0</ImportId>
        <AssignedToName>Doe, John</AssignedToName>
        <OpenedByName>McLaren, Susan</OpenedByName>
        <OpenedByEmail>[email protected]</OpenedByEmail>
        <OpenedByCompany>Edgar Solutions</OpenedByCompany>
        <ResolvedByName>McLaren, Susan</ResolvedByName>
        <UserName>Fry, Alex</UserName>
        <OwnerName>Davis, Eugeny</OwnerName>
        <NbrFiles>0</NbrFiles>
        <NbrNotes>1</NbrNotes>
        <NbrEvents>0</NbrEvents>
        <NbrTasks>2</NbrTasks>
        <FolderName>FamilyAlbum/Release 1.1/Iteration 1</FolderName>
      </Bugs_LoadResult>
    </Bugs_LoadResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: 2244 {The server returns an appropriate value here}
 

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Bugs_LoadResponse xmlns="http://www.pragmaticsw.com/">
      <Bugs_LoadResult>
        <CustomFields>
          <string>0.9.19</string>
          <string>1.0.24</string>
        </CustomFields>
        <CustomFieldNames>
          <string>Found in build</string>
          <string>Fixed in build</string>
        </CustomFieldNames>
        <BugId>13254</BugId>
        <Title>Floating toolbar improvements</Title>
        <StatusCode>Resolved</StatusCode>
        <PriorityCode>2-Fix Soon</PriorityCode>
        <HowFoundCode>Test-Ad hoc</HowFoundCode>
        <ResolutionCode>Fixed</ResolutionCode>
        <AssigneeUserId>27942</AssigneeUserId>
        <OpenedBy>27568</OpenedBy>
        <ClosedBy>27942</ClosedBy>
        <ResolvedBy>27568</ResolvedBy>
        <Description><![CDATA[The design of the floating toolbar needs improvement so that it’s clearer what the user needs to do.]]></Description>
        <Resolution>Resolved by Susan McLaren on 24-Jun-2014 at 03:55 PM</Resolution>
        <OwnerUserId>27572</OwnerUserId>
        <TestCaseId>0</TestCaseId>
        <FolderId>52359</FolderId>
        <EstHrs>0.000</EstHrs>
        <EstStart>2014-06-10T10:00:00</EstStart>
        <EstFinish>2014-06-13T10:00:00</EstFinish>
        <PctComplete>100</PctComplete>
        <ActHrs>0.000</ActHrs>
        <ActualStart>2014-06-17T00:00:00</ActualStart>
        <ActFinish>2014-06-31T00:00:00</ActFinish>
        <EstHrsRemaining>0.000</EstHrsRemaining>
        <DateOpened>2014-05-26T15:54:21.093</DateOpened>
        <DateResolved>2014-06-24T15:55:25</DateResolved>
        <DateClosed>0001-01-01T00:00:00</DateClosed>
        <DateUpdated>2014-06-31T05:54:22</DateUpdated>
        <ProjId>17823</ProjId>
        <DateCreated>2014-05-26T15:54:21.093</DateCreated>
        <UpdateUserId>27534</UpdateUserId>
        <OriginalId>0</OriginalId>
        <ImportId>0</ImportId>
        <AssignedToName>Doe, John</AssignedToName>
        <OpenedByName>McLaren, Susan</OpenedByName>
        <OpenedByEmail>[email protected]</OpenedByEmail>
        <OpenedByCompany>Edgar Solutions</OpenedByCompany>
        <ResolvedByName>McLaren, Susan</ResolvedByName>
        <UserName>Fry, Alex</UserName>
        <OwnerName>Davis, Eugeny</OwnerName>
        <NbrFiles>0</NbrFiles>
        <NbrNotes>1</NbrNotes>
        <NbrEvents>0</NbrEvents>
        <NbrTasks>2</NbrTasks>
        <FolderName>FamilyAlbum/Release 1.1/Iteration 1</FolderName>
      </Bugs_LoadResult>
    </Bugs_LoadResponse>
  </soap12:Body>
</soap12:Envelope>

See Also

Bugs_Add
Bugs_Delete
Bugs_GetStatuses
Bugs_LoadByCriteria
Bugs_Update
Defects Operations
SOAP API Reference

Highlight search results