AuditDashboard Developer Portal
  1. Requests
AuditDashboard Developer Portal
  • AuditDashboard Developer Portal
  • Clients
    • Get All Clients
      GET
    • Create Clients
      POST
    • Update Clients
      PUT
    • Deactivate Clients
      DELETE
    • Activate Clients
      PATCH
    • Client Details
      GET
    • Update Client
      PUT
    • Deactivate Client
      DELETE
    • Activate Client
      PATCH
  • Divisions
    • Get Active Divisions
  • Engagements
    • Get Engagements by Status
    • Create Engagements
    • Update Engagement
    • Update Engagement Statuses
    • Delete Engagements
    • Get Engagement Details
    • Update Engagement
    • Update Engagement Status
    • Delete Engagement
    • Download Engagement Documents
    • Download Engagement Request Report
    • Download 'All Engagements' Report
  • Insights
    • Get Engagement Activity Log Parameters
    • Engagement Activity Log
    • Get Engagement by Last Activity Report Parameters
    • Engagement by Last Activity
    • Get Active Professional Users for Schedule
    • Schedule
    • User Activity and Status
  • Requests
    • Get Engagement Requests
      GET
    • Get Request by ID
      GET
    • Update Request Details
      PUT
    • Update Request Status and Priority
      PATCH
    • Delete Request
      DELETE
    • Create Requests
      POST
    • Update Multiple Requests
      PUT
    • Update Request Status and Priority
      PATCH
    • Delete Multiple Requests
      DELETE
    • Get Request History Feed
      GET
    • Get Request Activity Feed
      GET
    • Add Comment to Request
      POST
    • Delete a Request Comment
      DELETE
    • Delete a Request Document
      DELETE
    • Download Request Documents
      GET
    • Update Multiple Request Restrictions
      PATCH
    • Update Single Request Restrictions
      PATCH
    • Upload Request Document
      POST
  • Users
    • Get Users by Status
    • Create Users
    • Update Multiple Users
    • Deactivate Users
    • Activate Users
    • Get User Details
    • Update User Details
    • Deactivate User
    • Activate User
    • Invite Users
    • Generate User Activity Report
  • Authorization
    • Authorization call for Bearer Token
  • Trash
    • Get Trash Types
    • Get Trash List
    • Restore Trash Items
    • Permanently deletes trash items.
    • Restore a Trash Item
    • Permanently deletes a trash item.
  1. Requests

Update Request Details

PUT
/api/public/requests/{requestID}
Requests
Updates the Title, Reference, or Description of a specific request by its request ID.

Request

Path Params
requestID
integer <int32>
required
The unique identifier of the request to update.
Body Params application/json
RequestID
integer <int32>
optional
Gets the unique identifier for the request.
EngagementID
integer <int32>
optional
Sets the engagement ID associated with the request.
Title
string  | null 
optional
Sets the title of the request.
Reference
string  | null 
optional
Sets the reference code for the request.
Description
string  | null 
optional
Sets the description of the request.
HighPriority
boolean 
optional
Sets whether the request is marked as high priority.
SendEmailImmediately
boolean  | null 
optional
Sets whether an email should be sent immediately.
Status
enum<integer> <int32>
optional
Allowed values:
0110-100-1
ClientUserID
integer <int32> | null 
optional
Sets the client user ID associated with the request.
FirmUserID
integer <int32> | null 
optional
Sets the firm user ID associated with the request.
ExcludeFromDuplication
boolean  | null 
optional
Sets whether the request is excluded from duplication.
DueDate
string <date-time> | null 
optional
Sets the due date of the request.
Example
{
    "RequestID": 0,
    "EngagementID": 0,
    "Title": "string",
    "Reference": "string",
    "Description": "string",
    "HighPriority": true,
    "SendEmailImmediately": true,
    "Status": 0,
    "ClientUserID": 0,
    "FirmUserID": 0,
    "ExcludeFromDuplication": true,
    "DueDate": "2019-08-24T14:15:22Z"
}

Responses

🟢200OK
OK: The request was successfully updated.
This response does not have a body.
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-03-24 12:24:39
Previous
Get Request by ID
Next
Update Request Status and Priority
Built with