GET document/attachments/{quoteId}
Get the attachments for a given quote.
Request Information
URI
https://ofd-api.blueprintcpq.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. |
|
| Name | string |
None. |
|
| FileName | string |
None. |
|
| Created | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "619c9c55-0d1d-486a-b355-db0f49e156cb",
"Name": "sample string 2",
"FileName": "sample string 3",
"Created": "2026-05-16T06:51:16.7410593Z"
},
{
"Id": "619c9c55-0d1d-486a-b355-db0f49e156cb",
"Name": "sample string 2",
"FileName": "sample string 3",
"Created": "2026-05-16T06:51:16.7410593Z"
}
]
text/html
Sample:
[{"Id":"619c9c55-0d1d-486a-b355-db0f49e156cb","Name":"sample string 2","FileName":"sample string 3","Created":"2026-05-16T06:51:16.7410593Z"},{"Id":"619c9c55-0d1d-486a-b355-db0f49e156cb","Name":"sample string 2","FileName":"sample string 3","Created":"2026-05-16T06:51:16.7410593Z"}]
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-05-16T06:51:16.7410593+00:00</Created>
<FileName>sample string 3</FileName>
<Id>619c9c55-0d1d-486a-b355-db0f49e156cb</Id>
<Name>sample string 2</Name>
</AttachmentResponse>
<AttachmentResponse>
<Created>2026-05-16T06:51:16.7410593+00:00</Created>
<FileName>sample string 3</FileName>
<Id>619c9c55-0d1d-486a-b355-db0f49e156cb</Id>
<Name>sample string 2</Name>
</AttachmentResponse>
</ArrayOfAttachmentResponse>