PUT api/Insured/UploadInsuredFile?insuredId={insuredId}&folderId={folderId}&creatorName={creatorName}&isInsuredVisibleFolder={isInsuredVisibleFolder}
Use this endpoint to upload file to insured folder. Body must be of multipart/form-data content with appropriate headers. Only one file at a time is allowed to attach. To create a new folder under some specific folder,use CreateFolder end point by passing files->databaseId (of type 2 (Folder)) from GetInsuredFilesList end point as a parent id. This will create new folder under specific folder. Use files->databaseId (of type 2 (Folder)) from GetInsuredFilesList or data->databaseId from CreateFolder end point as a folder id in UploadInsuredFile. This will upload file in that particular folder.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| insuredId |
Database ID of an insured. |
globally unique identifier |
Required |
| folderId |
Database ID of subfolder. Optional parameter that you may pass to upload a file to a certain insured files subfolder. |
globally unique identifier |
None. |
| creatorName |
Name of the agent that will be set as file uploader if auth user exists for the agent. Optional. |
string |
None. |
| isInsuredVisibleFolder |
This parameter indicates if upload will happen into Insured Visible Folder if no folderId specified. |
boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
Common API response.
NowCertsApiResultOfFileList| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ApiStatus |
None. |
|
| Data | FileList |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
{
"status": 0,
"data": {
"databaseId": "e993ef06-759f-49bf-8829-a8e067f9b476",
"name": "sample string 2",
"path": "sample string 3",
"downloadUrl": "sample string 4",
"downloadUrlExpiresAtUtc": "2025-11-15T04:41:46.7832569-06:00",
"type": 0,
"mime": "sample string 5",
"size": 6,
"createDate": "2025-11-15T04:41:46.7832569-06:00",
"changeDate": "2025-11-15T04:41:46.7832569-06:00",
"creatorName": "sample string 9",
"isInsuredVisibleFolder": true,
"fileOrFolder": "sample string 11",
"isInsuredVisibleFile": true,
"parentId": "bfbf1dbd-7b8d-409d-9a2b-8aecebf0b462"
},
"message": "sample string 1"
}
application/xml, text/xml
<NowCertsApiResultOfFileListodPQ2rGR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
<Data>
<ChangeDate>2025-11-15T04:41:46.7832569-06:00</ChangeDate>
<CreateDate>2025-11-15T04:41:46.7832569-06:00</CreateDate>
<CreatorName>sample string 9</CreatorName>
<DatabaseId>e993ef06-759f-49bf-8829-a8e067f9b476</DatabaseId>
<DownloadUrl>sample string 4</DownloadUrl>
<DownloadUrlExpiresAtUtc>2025-11-15T04:41:46.7832569-06:00</DownloadUrlExpiresAtUtc>
<FileOrFolder>sample string 11</FileOrFolder>
<IsInsuredVisibleFile>true</IsInsuredVisibleFile>
<IsInsuredVisibleFolder>true</IsInsuredVisibleFolder>
<MIME>sample string 5</MIME>
<Name>sample string 2</Name>
<ParentId>bfbf1dbd-7b8d-409d-9a2b-8aecebf0b462</ParentId>
<Path>sample string 3</Path>
<Size>6</Size>
<Type>File</Type>
</Data>
<Message>sample string 1</Message>
<Status>Error</Status>
</NowCertsApiResultOfFileListodPQ2rGR>