NIH | National Cancer Institute | NCI Wiki  

WIKI MAINTENANCE NOTICE

Please be advised that NCI Wiki will be will be undergoing maintenance on Monday, June 24th between 1000 ET and 1100 ET.
Wiki will remain available, but users may experience screen refreshes or HTTP 502 errors during the maintenance period. If you encounter these errors, wait 1-2 minutes, then refresh your page.

If you have any questions or concerns, please contact the CBIIT Atlassian Management Team.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTTP MethodPOST
URL

/trials/complete/{idType}/{trialID}

Parameters

{idType}. Type of identifier you want to use to identify a trial in CTRP. Possible values: pa, nci, ctep, dcp.

{trialID}. Trial identifier value itself.

Request BodyXML document with
CompleteTrialUpdate

MIME Type: application/xml

Response BodyXML document with
TrialRegistrationConfirmation
MIME Type: application/xml
HTTP Response Code

200. Success

400. Validation error (including the condition when you are not allowed to update a particular trial)

401. Invalid username/password or insufficient permissions to access the service.

500. Internal server error

Examples

URL: https://trials.nci.nih.gov/services/trials/complete/nci/NCI-2014-00496

Request:

Code Block
languagehtml/xml
collapsetrue
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<tns:CompleteTrialUpdate 
    xmlns:tns="gov.nih.nci.pa.webservices.types"
    xmlns:tns1="gov.nih.nci.po.webservices.types.trimmed" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="gov.nih.nci.pa.webservices.types ../../src/resources/ws.xsd ">    

    <tns:clinicalTrialsDotGovTrialID>NCT12345678</tns:clinicalTrialsDotGovTrialID>
    <tns:otherTrialID>OTHER00000000001</tns:otherTrialID>    
    <tns:accrualDiseaseTerminology>ICD-O-3</tns:accrualDiseaseTerminology>
    <tns:grant>
        <tns:fundingMechanism>C06</tns:fundingMechanism>
        <tns:nihInstitutionCode>AA</tns:nihInstitutionCode>
        <tns:serialNumber>111111</tns:serialNumber>
        <tns:nciDivisionProgramCode>CCR</tns:nciDivisionProgramCode>
        <tns:fundingPercentage>100.0</tns:fundingPercentage>
    </tns:grant>
    <tns:trialStatus>Approved</tns:trialStatus>
    <tns:whyStopped>If study stopped, enter the reason why.</tns:whyStopped>
    <tns:trialStatusDate>2014-07-07</tns:trialStatusDate>
    <tns:trialStartDate type="Actual">2010-01-11</tns:trialStartDate>
    <tns:primaryCompletionDate type="Anticipated">2025-01-01</tns:primaryCompletionDate>
    <tns:completionDate type="Anticipated">2050-01-01</tns:completionDate>
    <tns:protocolDocument filename="protocol_updated.pdf">dGVzdA==</tns:protocolDocument>
    <tns:irbApprovalDocument filename="irb_updated.pdf">dGVzdA==</tns:irbApprovalDocument>
    <tns:participatingSitesDocument
        filename="sites_updated.pdf">dGVzdA==</tns:participatingSitesDocument>
    <tns:informedConsentDocument filename="consent_updated.pdf">dGVzdA==</tns:informedConsentDocument>
    <tns:otherDocument filename="other_updated.pdf">dGVzdA==</tns:otherDocument>
	<tns:trialOwner>submitter-ci@example.com</tns:trialOwner>
</tns:CompleteTrialUpdate>

Response:

Code Block
languagehtml/xml
collapsetrue
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TrialRegistrationConfirmation xmlns="gov.nih.nci.pa.webservices.types"
    xmlns:ns2="gov.nih.nci.po.webservices.types.trimmed">
    <paTrialID>137908558</paTrialID>
    <nciTrialID>NCI-2014-00496</nciTrialID>
</TrialRegistrationConfirmation>

...