GET quote/{quote}/documents
Gets the documents for a quote.
Request Information
URI
https://ofd-api.blueprintcpq.net/quote/{quote}/documents
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| quote |
Quote Identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The documents.
Collection of DocumentDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Created | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e",
"Name": "sample string 2",
"Created": "2026-08-12T14:52:43.52322Z"
},
{
"Id": "2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e",
"Name": "sample string 2",
"Created": "2026-08-12T14:52:43.52322Z"
}
]
text/html
Sample:
[{"Id":"2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e","Name":"sample string 2","Created":"2026-08-12T14:52:43.52322Z"},{"Id":"2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e","Name":"sample string 2","Created":"2026-08-12T14:52:43.52322Z"}]
application/xml, text/xml
Sample:
<ArrayOfDocumentDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
<DocumentDetail>
<Created>2026-08-12T14:52:43.52322+00:00</Created>
<Id>2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e</Id>
<Name>sample string 2</Name>
</DocumentDetail>
<DocumentDetail>
<Created>2026-08-12T14:52:43.52322+00:00</Created>
<Id>2659d9f5-59a8-4e6e-a2d9-23c0c3e2a09e</Id>
<Name>sample string 2</Name>
</DocumentDetail>
</ArrayOfDocumentDetail>