PUT api/Policy/UploadPolicyFile?insuredId={insuredId}&policyId={policyId}&folderId={folderId}&creatorName={creatorName}

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.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
insuredId

Database ID of a insured.

globally unique identifier

Required

policyId

Database ID of a policy.

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.

Body Parameters

None.

Response Information

Resource Description

Common API response.

NowCertsApiResultOfFileList
NameDescriptionTypeAdditional information
Status

ApiStatus

None.

Data

FileList

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 0,
  "data": {
    "databaseId": "3e5c11ea-6230-4c6a-ab1d-1cc6dfa12932",
    "name": "sample string 2",
    "path": "sample string 3",
    "downloadUrl": "sample string 4",
    "downloadUrlExpiresAtUtc": "2024-04-19T05:50:41.3515385-05:00",
    "type": 0,
    "mime": "sample string 5",
    "size": 6,
    "createDate": "2024-04-19T05:50:41.3515385-05:00",
    "changeDate": "2024-04-19T05:50:41.3515385-05:00",
    "creatorName": "sample string 9",
    "isInsuredVisibleFolder": true,
    "fileOrFolder": "sample string 11"
  },
  "message": "sample string 1"
}

application/xml, text/xml

Sample:
<NowCertsApiResultOfFileListodPQ2rGR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
  <Data>
    <ChangeDate>2024-04-19T05:50:41.3515385-05:00</ChangeDate>
    <CreateDate>2024-04-19T05:50:41.3515385-05:00</CreateDate>
    <CreatorName>sample string 9</CreatorName>
    <DatabaseId>3e5c11ea-6230-4c6a-ab1d-1cc6dfa12932</DatabaseId>
    <DownloadUrl>sample string 4</DownloadUrl>
    <DownloadUrlExpiresAtUtc>2024-04-19T05:50:41.3515385-05:00</DownloadUrlExpiresAtUtc>
    <FileOrFolder>sample string 11</FileOrFolder>
    <IsInsuredVisibleFolder>true</IsInsuredVisibleFolder>
    <MIME>sample string 5</MIME>
    <Name>sample string 2</Name>
    <Path>sample string 3</Path>
    <Size>6</Size>
    <Type>File</Type>
  </Data>
  <Message>sample string 1</Message>
  <Status>Error</Status>
</NowCertsApiResultOfFileListodPQ2rGR>