AuditDashboard Developer Portal
  1. Clients
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
      GET
  • Engagements
    • Get Engagements by Status
      GET
    • Create Engagements
      POST
    • Update Engagement
      PUT
    • Update Engagement Statuses
      PATCH
    • Delete Engagements
      DELETE
    • Get Engagement Details
      GET
    • Update Engagement
      PUT
    • Update Engagement Status
      PATCH
    • Delete Engagement
      DELETE
    • Download Engagement Documents
      GET
    • Download Engagement Request Report
      GET
    • Download 'All Engagements' Report
      GET
  • Insights
    • Get Engagement Activity Log Parameters
      GET
    • Engagement Activity Log
      POST
    • Get Engagement by Last Activity Report Parameters
      GET
    • Engagement by Last Activity
      POST
    • Get Active Professional Users for Schedule
      GET
    • Schedule
      POST
    • User Activity and Status
      POST
  • Requests
    • Get Engagement Requests
    • Get Request by ID
    • Update Request Details
    • Update Request Status and Priority
    • Delete Request
    • Create Requests
    • Update Multiple Requests
    • Update Request Status and Priority
    • Delete Multiple Requests
    • Get Request History Feed
    • Get Request Activity Feed
    • Add Comment to Request
    • Delete a Request Comment
    • Delete a Request Document
    • Download Request Documents
    • Update Multiple Request Restrictions
    • Update Single Request Restrictions
    • Upload Request Document
  • 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. Clients

Update Client

PUT
/api/public/clients/{id}
Clients
Updates the details of a specific client company by its unique ID.
Each company must have a unique name. Divisions must be valid and associated with the user.
CompanyID cannot be changed; passing it in the model will be ignored.

Request

Path Params
id
integer <int32>
required
The unique identifier of the client company to update.
Body Params application/json
Model used for updating an existing company.
CompanyID
integer <int32>
optional
Gets the unique identifier for the company.
CompanyName
string  | null 
optional
Sets the name of the company (maximum 100 characters).
Address
string  | null 
optional
Sets the address of the company (maximum 100 characters).
City
string  | null 
optional
Sets the city where the company is located (maximum 100 characters).
Province
string  | null 
optional
Sets the province / region where the company is located (maximum 100 characters).
PostalCode
string  | null 
optional
Sets the postal code for the company address (maximum 10 characters).
Country
string  | null 
optional
Sets the country where the company is located (maximum 100 characters).
Phone
string  | null 
optional
Sets the phone number of the company (maximum 25 characters).
Fax
string  | null 
optional
Sets the fax number of the company (maximum 25 characters).
Website
string  | null 
optional
Sets the website URL of the company (maximum 500 characters).
Industry
string  | null 
optional
Sets the industry sector of the company (maximum 100 characters).
RequiresMFA
boolean  | null 
optional
Sets a value indicating whether the company requires multi-factor authentication.
Divisions
array[integer <int32>] | null 
optional
Sets the list of division identifiers associated with the company.
Example
{
    "CompanyID": 0,
    "CompanyName": "string",
    "Address": "string",
    "City": "string",
    "Province": "string",
    "PostalCode": "string",
    "Country": "string",
    "Phone": "string",
    "Fax": "string",
    "Website": "string",
    "Industry": "string",
    "RequiresMFA": true,
    "Divisions": [
        0
    ]
}

Responses

🟢200OK
OK: The client company was successfully updated.
This response does not have a body.
🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
Modified at 2025-03-24 12:24:39
Previous
Client Details
Next
Deactivate Client
Built with