GET document/attachments/{quoteId}
Get the attachments for a given quote.
Request Information
URI
https://scoregroup-uat-api.xaitcpq.net/document/attachments/{quoteId}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| quoteId |
Quote identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
List of attachments.
Collection of AttachmentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| FileName | string |
None. |
|
| Created | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b",
"FileName": "sample string 2",
"Created": "2026-03-24T22:07:33.4573852Z"
},
{
"Id": "baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b",
"FileName": "sample string 2",
"Created": "2026-03-24T22:07:33.4573852Z"
}
]
text/html
Sample:
[{"Id":"baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b","FileName":"sample string 2","Created":"2026-03-24T22:07:33.4573852Z"},{"Id":"baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b","FileName":"sample string 2","Created":"2026-03-24T22:07:33.4573852Z"}]
application/xml, text/xml
Sample:
<ArrayOfAttachmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.Responses">
<AttachmentResponse>
<Created>2026-03-24T22:07:33.4573852+00:00</Created>
<FileName>sample string 2</FileName>
<Id>baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b</Id>
</AttachmentResponse>
<AttachmentResponse>
<Created>2026-03-24T22:07:33.4573852+00:00</Created>
<FileName>sample string 2</FileName>
<Id>baf5c2a1-c5b8-4a72-a86e-9fd42d250d1b</Id>
</AttachmentResponse>
</ArrayOfAttachmentResponse>