Application & Process Automation

Getting Started
Authentication & Access
Accounts with Multi-Factor Authentication
Using method GetPrograms
Common Usage Scenarios
Create and Submit a Project
Add/Change Data in an Existing Project
Daily Polling for Project Changes
Troubleshooting
Using Custom IDs
API Method Reference
GetPrograms
URL Format
Response
XML Attributes
Sample Code
GetForms
URL Format
Response
Forms Attributes
AvailableInStatuses and LeadsToStatus
Status Attributes
Sample Code
GetFormSchema
V1 Response
V2 Response
Sample Code
GetProjects
V1 Response
V2 Response
V3 Response
Sample Code
GetProjectsByNumber
V1 Response
V2 Response
Sample Request
Sample Code
GetProjectsByData
Sample Request
Request XML Nodes and Attributes
V1 Response
V2 Response
CreateNewProject
Sample Response
Response XML Attributes
Sample Code
GetAllProjectData - Admin only
Sample Response
XML Attributes
Sample Code
GetProjectData
Sample Response
XML Attributes
Sample Code
SetProjectData
Sample Request
Request XML Attributes
Sample Response
Response XML Attributes
Sample Code
GetActiveAttachment
URL Format
Sample Code
GetAttachmentAsAdmin – Admin only
URL Format
SetProjectAttachment
Identifying attachment file types
URL Format
Sample Response
Response XML Attributes
Sample Code
SetAttachmentMetadata
Sample Request
Request XML Attributes
Sample Response
Response XML Attributes
Sample Code
GetAttachmentMetadata
URL Format
Sample Response
Response XML Attributes
Sample Code
SubmitProject
URL Format
Sample Response
Response XML Attributes
Sample Code
GetStatusList – Admin only
Sample Code
URL Format
Sample Response
Response XML Attributes
GetCustomListChoices
URL Format
Sample Response
Response XML Attributes
GetProjectStatusHistory – Admin only
URL Format
Sample Response
Response XML Attributes
Sample Code
SetProjectStatus – Admin only
URL Format
Sample Response
Response XML Attributes
Sample Code
GetExportProject – Admin only
Response XML Attributes
Sample Code
URL Format
Sample Response
CreateMfaSessionToken
URL Format
Sample Request
Request XML Attributes
Sample Response
Response XML Attributes
Sample Code
DeleteMfaSessionToken
URL Format
Sample Response
Sample Code
SetAssignee
URL Format
Sample Request
Request XML Attributes
Sample Response
Response XML Attributes
SetProjectOwner
URL Format
Sample Request
Request XML Attributes
Sample Response
Response XML Attributes
GetInquiryThreads – Admin Only
GetNotesInInquiryThread – Admin Only
SetInquiryNote – Admin Only
SetInquiryThreadStatus – Admin Only
SetInquiryThreadExternalId – Admin Only
SetProjectStatusReportAs – Admin only
Code Samples
EncodeAuthorizationHeader
MakeGetRequest
MakePostRequest
MakeGetFileRequest
MakeDeleteRequest
PowerShell

GetNotesInInquiryThread – Admin Only

Retrieves the list of notes associated with the given Project Inquiries thread. Requires admin read access to the project.
 
HTTP verb: GET
Required inputs: ProgramId, ProjectID, ThreadID
 

Path Parameters
Path Parameters Description
ProgramId The ID of the program.
ProjectID The ID of the project to retrieve the inquiry from.
ThreadID The ID of the thread to retrieve.

URL Format

Format: https://{BaseURL}/Programs/{ProgramId}/InquiryThreads/{ThreadId}/Notes
 
Sample: https://{BaseURL}/Programs/1HF29X4P/InquiryThreads/N58VKF4CSNRP/Notes

Sample Response


<NotesInInquiryThreadResponse ProgramId="RR7AD053KP" ProjectId="1HT6079AY0JW" ThreadId="N58VKF4CSNRP">
    <InquiryNoteList>
        <InquiryNote NoteId="AMX7Z9RM9QNZ" Author="Example User" IsAdmin="False" SubmittedTimestamp="2021-09-23T14:02:30-07:00">
            <NoteContent>Example Question</NoteContent>
        </InquiryNote>
        <InquiryNote NoteId="WA7RDTC7C9P6" Author="Example Admin" IsAdmin="True" SubmittedTimestamp="2021-09-23T14:15:23-07:00">
            <NoteContent>Example Response</NoteContent>
        </InquiryNote>    
    </InquiryNoteList>
</NotesInInquiryThreadResponse>