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

Create Requests

POST
/api/public/requests
Requests
Creates one or more new requests with the specified details.

Request

Body Params application/json
array of:
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.
DueDate
string <date-time> | null 
optional
Sets the due date for 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.
FirmUserID
integer <int32> | null 
optional
Sets the firm user ID associated with the request.
ClientUserID
integer <int32> | null 
optional
Sets the client user ID associated with the request.
Restricted
boolean 
optional
Sets whether the request is restricted.
ExcludeFromDuplication
boolean 
optional
Sets whether the request should be excluded from duplication.
Access
array[integer <int32>] | null 
optional
Sets the list of user IDs who have access to the request.
Example
[
    {
        "EngagementID": 0,
        "Title": "string",
        "Reference": "string",
        "Description": "string",
        "DueDate": "2019-08-24T14:15:22Z",
        "HighPriority": true,
        "SendEmailImmediately": true,
        "FirmUserID": 0,
        "ClientUserID": 0,
        "Restricted": true,
        "ExcludeFromDuplication": true,
        "Access": [
            0
        ]
    }
]

Responses

🟢201Created
Created: The requests were successfully created.
This response does not have a body.
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-03-24 12:24:39
Previous
Delete Request
Next
Update Multiple Requests
Built with