Application & Process Automation
- Getting Started
- Common Usage Scenarios
- Troubleshooting
- Using Custom IDs
- API Method Reference
-
- GetPrograms
- GetForms
- GetFormSchema
- GetProjects
- GetProjectsByNumber
- GetProjectsByData
- CreateNewProject
- GetAllProjectData - Admin only
- GetProjectData
- SetProjectData
- GetActiveAttachment
- GetAttachmentAsAdmin – Admin only
- SetProjectAttachment
- SetAttachmentMetadata
- GetAttachmentMetadata
- SubmitProject
- GetStatusList – Admin only
- GetCustomListChoices
- GetProjectStatusHistory – Admin only
- SetProjectStatus – Admin only
- GetExportProject – Admin only
- CreateMfaSessionToken
- DeleteMfaSessionToken
- SetAssignee
- SetProjectOwner
- GetInquiryThreads – Admin Only
- GetNotesInInquiryThread – Admin Only
- SetInquiryNote – Admin Only
- SetInquiryThreadStatus – Admin Only
- SetInquiryThreadExternalId – Admin Only
- SetProjectStatusReportAs – Admin only
- Code Samples
SetInquiryNote – Admin Only
Adds a new Project Inquiries thread along with a starting note to the given project, or appends a new note to an existing Project Inquiries thread associated with the given project, depending on if a ThreadId is provided in the request. Requires admin write access to the project.
HTTP verb: POST
Required inputs: ProgramId, ProjectID
HTTP verb: POST
Required inputs: ProgramId, ProjectID
Path Parameters
Path Parameters | Description |
---|---|
ProgramId | The ID of the program. |
ProjectID | The ID of the project to set the inquiry to. |
Note: Request payloads must include the namespace “http://service.powerclerk.com/api/v1” (see below).
<InquiryNoteRequest xmlns=”http://service.powerclerk.com/api/v1”>
<InquiryThread Title="Example New Thread" Category="General">
<InquiryNote Author="Example User">
<NoteContent>Example New Note</NoteContent>
</InquiryNote>
</InquiryThread>
</InquiryNoteRequest>
<InquiryNoteRequest xmlns=”http://service.powerclerk.com/api/v1”>
<SetInquiryThread Title="Example New Thread" Category="General">
<SetInquiryNote Author="Example User">Example New Note</SetInquiryNote>
</SetInquiryThread>
</InquiryNoteRequest>
<InquiryNoteRequest xmlns=http://service.powerclerk.com/api/v1>
<InquiryThread ThreadId=”N58VKF4CSNRP”>
<InquiryNote Author="Example User">
<NoteContent>Example New Note</NoteContent>
</InquiryNote>
</InquiryThread>
</InquiryNoteRequest>
<NotesInInquiryThreadResponse ProgramId="1HF29X4P" ProjectId="M4AN7RYRSYZE" ThreadId="5PATRFQ83TPB" xmlns=http://service.powerclerk.com/api/v1/ xmlns:xsd=http://www.w3.org/2001/XMLSchema xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance>
<InquiryNoteList>
<InquiryNote NoteId="7UHK314CYGVE" Author="Example User" IsAdmin="True" SubmittedTimestamp="2023-03-30T11:47:38-07:00">
<NoteContent>Example New Note</NoteContent>
</InquiryNote>
</InquiryNoteList>
</NotesInInquiryThreadResponse>
What’s Next?