{"info":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","description":"<html><head></head><body><p><img src=\"https://briefbuilder.blob.core.windows.net/images/bundledocs-logo-210x210.png\" alt=\"Bundledocs logo\"></p>\n<p>Bundledocs Web Api (v1)</p>\n<p>Welcome to the Bundledocs API Guide. </p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8252700","collectionId":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","publishedId":"SVYrsJ5d","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"2A2728","highlight":"27AAE1"},"publishDate":"2019-08-06T13:21:09.000Z"},"item":[{"name":"Authentication & Authorization","item":[],"id":"4a83f922-3059-4f0c-8613-ab45ca6254cf","description":"<h2 id=\"registration\">Registration</h2>\n<p>To integrate your application with Bundledocs you must first register your application to receive the necessary <code>Secret</code> and <code>Key</code> for authentication. Registering your application can be done in a few simple steps.</p>\n<ol>\n<li><p>Go to <a href=\"https://app.bundledocs.com/session/new/#!/create-account\">Bundledocs</a> and create an account that will be used to manage your integration.</p>\n</li>\n<li><p>Once your account is created, you must request it has developer permissions by sending an email to <a href=\"mailto:support@bundledocs.com\">support@bundledocs.com</a> with the subject line 'Bundledocs integration developer request'.</p>\n</li>\n<li><p>Once your account has the correct permissions, go to <a href=\"https://app.bundledocs.com\">Bundledocs</a> and log in.</p>\n</li>\n<li><p>After logging in select the <code>Apps</code> item from the bottom navigation menu, as highlighted below.\n<img src=\"https://github.com/Bundledocs/Bundledocs.Api.Docs/blob/master/1.RegisterAppsButton.png?raw=true\" alt=\"Screenshot: Link to Apps\" /></p>\n</li>\n<li><p>From the Apps page select the <code>+ New Application</code> button. This is found in the top left corner as shown below.\n<img src=\"https://github.com/Bundledocs/Bundledocs.Api.Docs/blob/master/2.RegisterAddApllicationButton.png?raw=true\" alt=\"Screenshot: New Application Button\" /></p>\n</li>\n<li><p>A form to register the application will appear on screen. Fill in the details as appropriate and select the <code>Save</code> button.\n<img src=\"https://github.com/Bundledocs/Bundledocs.Api.Docs/blob/master/3.RegformCloseUp.PNG?raw=true\" alt=\"Screenshot: Register Application Form\" /></p>\n</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Form Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Name</td>\n<td>The name of your application integration.</td>\n</tr>\n<tr>\n<td>Website Uri</td>\n<td>The Uri of your application's website.</td>\n</tr>\n<tr>\n<td>Icon Uri</td>\n<td>A Uri pointing to your company's icon - small image.</td>\n</tr>\n<tr>\n<td>Logo Uri</td>\n<td>A Uri pointing to your company's logo.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>A description for the integration.</td>\n</tr>\n<tr>\n<td>Redirect Uri</td>\n<td>The Uri you wish to be redirected to after authentication and authorization. The <code>access_token</code> will be sent to this location, therefore it should be a secure address. If you do not have a redirect Uri you can use: <a href=\"https://app.bundledocs.com/auth/oauth2/approval\">https://app.bundledocs.com/auth/oauth2/approval</a></td>\n</tr>\n<tr>\n<td>Redirect Uri (Secondary)</td>\n<td>This is optional but it can be useful for testing purposes.</td>\n</tr>\n</tbody>\n</table>\n</div><p>When registration is complete the newly registered application will appear on the Apps page. Here the <code>Key</code> and <code>Secret</code> will be displayed.\n<img src=\"https://github.com/Bundledocs/Bundledocs.Api.Docs/blob/master/4.RegisterKeySecret.png?raw=true\" alt=\"Screenshot: Register Application Form\" /></p>\n<h2 id=\"oauth2\">OAuth2</h2>\n<p>Bundledocs follows the <a href=\"https://tools.ietf.org/html/rfc6749\">OAuth2</a> Spec.</p>\n<p>Once registration is complete, you can configure your application to request an OAuth2 <code>access_token</code>. The <code>access_token</code> allows your application to interact with Bundledocs on behalf of your user.</p>\n<p>The OAuth2 endpoint for this request in Bundledocs is:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://app.bundledocs.com/auth/oauth2/authorize\n</code></pre><p>The request requires three query parameters: <code>response_type</code>, <code>client_id</code>, and <code>redirect_uri</code>.</p>\n<ol>\n<li><p><strong>response_type</strong>\n<code>response_type</code> is the only parameter whose value changes how the <code>access_token</code> is acquired. Bundledocs supports two possible values <code>token</code> and <code>code</code>.  </p>\n<ul>\n<li><p><code>response_type</code> <code>token</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://app.bundledocs.com/auth/oauth2/authorize?response_type=token&amp;client_id=KEY&amp;redirect_uri=YOUR_REDIRECT_URI\n</code></pre><p>  <code>token</code> is used for OAuth2's <code>implicit</code> Authorization Grant Type. This is the simplest option and the one Bundledocs recommends. With this <code>response_type</code> when the request is sent the <code>access_token</code> will be immediately returned to the <code>redirect_uri</code>. However, it will not be directly accessible by your application server. It will be encrypted and embedded in the hash portion of the uri. You can retrieve the <code>access-token</code> using client-side scripting, e.g. <code>location.hash </code></p>\n</li>\n<li><p><code>response_type</code> <code>code</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://app.bundledocs.com/auth/oauth2/authorize?response_type=code&amp;client_id=KEY&amp;redirect_uri=YOUR_REDIRECT_URI\n</code></pre><p>  <code>code</code> is used for OAuth2 <code>code</code> Authorization Grant Type. This requires an additional step to acquire the <code>access_token</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>client_id</strong>\nThe value for this parameter is the <code>Key</code> given after application registration. This identifies the user.</p>\n</li>\n<li><p><strong>redirect_uri</strong>\nThe value for this parameter is the Redirect Uri address provided during registration. The <code>access_token</code> will be sent to this address.</p>\n</li>\n</ol>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>response_type</code></td>\n<td><code>token</code> or <code>code</code></td>\n<td><code>token</code> is used for OAuth2 <code>implicit</code> Authorization Grant Type. <code>code</code> is used for OAuth2 <code>code</code> Authorization Grant Type.</td>\n</tr>\n<tr>\n<td><code>client_id</code></td>\n<td><code>key</code></td>\n<td>The value for this parameter is the <code>Key</code></td>\n</tr>\n<tr>\n<td><code>redirect_uri</code></td>\n<td>uri-string</td>\n<td>The <code>access_token</code> will be sent here.</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>Note</em>: The first time a user accesses your application, Bundledocs will ask if they are sure they wish to authorize access.</p>\n","event":[{"listen":"prerequest","script":{"id":"e01bc8c8-2db2-4424-a7af-712721c83973","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd0c2f7b-b9ab-4083-a85a-f43593183a5a","type":"text/javascript","exec":[""]}}],"_postman_id":"4a83f922-3059-4f0c-8613-ab45ca6254cf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","type":"collection"}}},{"name":"Quick Start","item":[{"name":"Create a New Bundle","id":"1e0a0283-b69b-4a95-ac8d-6a71ce591896","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Title\" : \"New Test Bundle\",\n\t\"Code\" : \"TestCode\"\n}"},"url":"https://app.bundledocs.com:443/api/v1/bundles","description":"<p>Use this endpoint to create a new bundle in Bundledocs.</p>\n<h6 id=\"request-body-arguments\">Request Body Arguments</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Title</code></td>\n<td>The name of the bundle.</td>\n</tr>\n<tr>\n<td><code>Code</code></td>\n<td>A code identifier for the bundle.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","bundles"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[]}},"response":[{"id":"04f8943b-6514-44d4-a447-ee416c687b07","name":"Create a New Bundle","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Title\" : \"New Test Bundle\",\n\t\"Code\" : \"TestCode\"\n}"},"url":"https://app.bundledocs.com:443/api/v1/bundles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1430"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Tue, 06 Aug 2019 13:08:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372038991640757_f23f2726-ac9c-43cd-b393-b8de6b04a741\",\n            \"PdfFileLength\": 0,\n            \"IsLocked\": false,\n            \"GenerateStatus\": 0,\n            \"Code\": \"TestCode\",\n            \"Title\": \"New Test Bundle\",\n            \"Description\": \"New Test Bundle\",\n            \"IndexTitleText\": \"Index\",\n            \"IndexPageNumberHeaderText\": \"Page(s)\",\n            \"IndexDisplayDateHeaderText\": \"\",\n            \"IndexCustomColumnHeaderText\": \"\",\n            \"IsBriefSectionHeadersIncluded\": false,\n            \"IsSectionIndexPagesRemoved\": false,\n            \"IsSuperIndexPagesRemoved\": false,\n            \"IsSuperTitlePageRemoved\": false,\n            \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n            \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n            \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n            \"IsPageNumberingResetPerBook\": false,\n            \"IsPageNumberPrintedOnIndexPages\": false,\n            \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n            \"IsPageNumberPrintedOnTitlePages\": false,\n            \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n            \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n            \"IsPageNumberSupressedOnDocuments\": false,\n            \"IsPageNumberSupressedOnIndexPages\": false,\n            \"IsPageNumberPrefixedWithSectionNumber\": false,\n            \"IsSectionNumberNumeric\": false,\n            \"SectionNumberStart\": 1,\n            \"IsLateInsertNumberNumeric\": true,\n            \"IsLateInsertPageNumberNumeric\": true,\n            \"IsDisplayOrderHiddenDocument\": false,\n            \"IsDisplayOrderHiddenSection\": false,\n            \"IsDisplayOrderHiddenVolume\": false,\n            \"PageNumberingPositionVertical\": \"BOTTOM\",\n            \"PageNumberingPositionHorizontal\": \"RIGHT\",\n            \"IsDocumentDescriptionPrintedOnDocuments\": false,\n            \"DocumentDescriptionSource\": 0,\n            \"DocumentDescriptionSourceCode\": \"\",\n            \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n            \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n            \"IsDisplayOrderGlobal\": false,\n            \"IsSplitAndZip\": false,\n            \"IsSourceAndZip\": false,\n            \"IsZipWithSubFolders\": false,\n            \"IsZipWithFullBundle\": false,\n            \"IsZipWithoutFileNames\": false,\n            \"IsGenerateWithVolumes\": false,\n            \"IsGenerateWithoutDocuments\": false,\n            \"IsGenerateWithVacatPages\": false,\n            \"IsGenerateWithVacatPagesDocuments\": false,\n            \"IsGenerateWithLateInsertsOnly\": false,\n            \"IsGenerateWithCustomColumnText\": false,\n            \"BriefDocuments\": [],\n            \"BriefReceipts\": [],\n            \"BriefShares\": null,\n            \"BriefCollaborators\": null,\n            \"BriefVisibleTos\": [],\n            \"MigrationInvitation\": null,\n            \"IsBatesPageNumberIncluded\": false,\n            \"BatesPageNumberPrefix\": \"\",\n            \"BatesPageNumberSuffix\": \"\",\n            \"BatesPageNumberStart\": 1,\n            \"BatesPageNumberLength\": 1,\n            \"IsWatermarked\": false,\n            \"WatermarkType\": \"\",\n            \"IsRedactionsExcludedGlobal\": false,\n            \"IsHighlightsExcludedGlobal\": false,\n            \"IsNotesExcludedGlobal\": false,\n            \"IsLabelsExcludedGlobal\": false,\n            \"BriefAnnotationExclusionPolicy\": 0,\n            \"BriefAnnotationExclusions\": null,\n            \"IsGenerateWithPrivateAnnotations\": false,\n            \"IsBriefOpen\": false,\n            \"IsVisibleToGroups\": false,\n            \"IsReadOnlyToGroups\": false,\n            \"AccessType\": 0,\n            \"IsHidden\": false,\n            \"TemplatePartitionKey\": null,\n            \"TemplateRowKey\": null,\n            \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n            \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n            \"SectionIndexFontType\": \"TIMES_BOLD\",\n            \"SectionIndexFontColor\": \"#000000\",\n            \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n            \"DocumentIndexFontType\": \"TIMES\",\n            \"DocumentIndexFontColor\": \"#000000\",\n            \"PageNumberFontType\": \"COURIER_BOLD\",\n            \"PageNumberFontSize\": \"MEDIUM\",\n            \"PageNumberFontColor\": \"#000000\",\n            \"DocumentDescriptionFontType\": null,\n            \"DocumentDescriptionFontSize\": null,\n            \"DocumentDescriptionFontColor\": \"#000000\",\n            \"SectionBorderColor\": \"#ffffff\",\n            \"ZoomLevel\": 0,\n            \"NumberOfPages\": 0,\n            \"BlobStorageAccountName\": null,\n            \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"Created\": \"2019-08-06T13:08:20.8359242Z\",\n            \"LastAccessedTimeStamp\": \"2019-08-06T13:08:20.8359242Z\",\n            \"IsDeleted\": false,\n            \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"RowKey\": \"12518372038991640757_f23f2726-ac9c-43cd-b393-b8de6b04a741\",\n            \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n            \"ETag\": null\n        }\n    ]\n}"}],"_postman_id":"1e0a0283-b69b-4a95-ac8d-6a71ce591896"},{"name":"Create a Section in a Bundle","id":"558d3e58-2e6b-4f2a-84bd-8de5ba6b1cae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n    \"ForeignKey\": \"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\",\n    \"Description\": \"Test Section\"\n}"},"url":"https://app.bundledocs.com:443/api/v1/sections","description":"<p>Use this endpoint to create a new section in a bundle.</p>\n<h6 id=\"request-body-arguments\">Request Body Arguments</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Argument</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PartitionKey</code></td>\n<td>The <code>PartitionKey</code> of the bundle to add the section to.</td>\n</tr>\n<tr>\n<td><code>ForeignKey</code></td>\n<td>The <code>RowKey</code> of the bundle to add the section to.</td>\n</tr>\n<tr>\n<td><code>Description</code></td>\n<td>The name of the section.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v1","sections"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[]}},"response":[{"id":"a61d4788-26d0-4ade-9cab-29c7fe447013","name":"Create a Section in a Bundle","originalRequest":{"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n    \"ForeignKey\": \"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\",\n    \"Description\": \"Test Section\"\n}"},"url":"https://app.bundledocs.com:443/api/v1/sections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"741"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Tue, 06 Aug 2019 13:09:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"Type\": \"HEADER\",\n            \"Description\": \"Test Section\",\n            \"BorderColor\": \"#ffffff\",\n            \"PageRange\": null,\n            \"FileUploadKey\": null,\n            \"BurstRange\": null,\n            \"IsExpanded\": true,\n            \"IsContinuation\": false,\n            \"IsIncluded\": true,\n            \"IsSimpleInsert\": false,\n            \"IsStrikeOut\": false,\n            \"IsLateInsert\": false,\n            \"IsHiddenOnIndexPages\": false,\n            \"IsUsingSourceFileDimensions\": false,\n            \"SourceFilePath\": null,\n            \"PdfFilePath\": null,\n            \"ParentRowKey\": \"\",\n            \"DisplayOrder\": \"8\",\n            \"NumberOfPages\": 1,\n            \"FileName\": null,\n            \"FileSize\": null,\n            \"FileExtension\": null,\n            \"DisplayDate\": \"2019-08-06T13:09:59Z\",\n            \"DisplayDateFormat\": null,\n            \"DisplayDatePrinted\": null,\n            \"DateRegenerated\": \"2019-08-06T13:09:59.9805137Z\",\n            \"CustomColumnText\": \"\",\n            \"Children\": [],\n            \"Annotations\": [],\n            \"ForeignKey\": \"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\",\n            \"Created\": \"2019-08-06T13:09:59.9805137Z\",\n            \"LastAccessedTimeStamp\": \"2019-08-06T13:09:59.9805137Z\",\n            \"IsDeleted\": false,\n            \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"RowKey\": \"12518372038000194862_4b294808-32d9-4438-8a08-f53470208fa1\",\n            \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n            \"ETag\": null\n        }\n    ]\n}"}],"_postman_id":"558d3e58-2e6b-4f2a-84bd-8de5ba6b1cae"},{"name":"Add a Document to a Section","id":"77cfc10d-7088-4a36-b380-5c989cf58556","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"/C:/Users/sinead.naughton/Documents/Sinead/Test Document 2.docx"},{"key":"PartitionKey","value":"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee","description":"<p>The <code>PartitionKey</code> of the bundle to add the document to.</p>\n","type":"text"},{"key":"ForeignKey","value":"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982","description":"<p>The <code>RowKey</code> of the bundle to add the document to.</p>\n","type":"text"},{"key":"ParentRowKey","value":"12518376424211167669_db94b986-9a9a-418b-8c80-c2b928e9f92e","description":"<p>The <code>RowKey</code> of the section to add the document to.</p>\n","type":"text"}]},"url":"https://app.bundledocs.com:443/api/v1/documents","description":"<p>Use this endpoint to upload a new document and add it to a particular section within a bundle.</p>\n","urlObject":{"path":["api","v1","documents"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[]}},"response":[{"id":"c9efba24-3bf4-4fe3-b1f4-752966d89eda","name":"Add a Document to a Section","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer AccessToken","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":"postman-cloud:///1ee9e4ee-6691-4c70-93f3-eeca12fb2ff7"},{"key":"PartitionKey","value":"Bundle.PartitionKey","description":"The `PartitionKey` of the bundle to add the document to.","type":"text"},{"key":"ForeignKey","value":"Bundle.RowKey","description":"The `RowKey` of the bundle to add the document to.","type":"text"},{"key":"ParentRowKey","value":"Section.RowKey","description":"The `RowKey` of the section to add the document to.","type":"text"}]},"url":"https://app.bundledocs.com:443/api/v1/documents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1705"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Thu, 22 Feb 2024 12:27:11 GMT"},{"key":"Cache-Control","value":"no-store,no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Vary","value":"Accept-Encoding,Origin,User-Agent"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Request-Context","value":"appId=cid-v1:248dccdc-b0e8-4e74-819b-9e7ff43ee792"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin"},{"key":"Permissions-Policy","value":"interest-cohort=()"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none';script-src 'self' 'nonce-O2uXyxDL/kKy/NM4fnDNAg==' 'wasm-unsafe-eval' 'unsafe-inline' https://*.olark.com https://*.google-analytics.com;object-src 'none';base-uri 'none';frame-src 'self' https://adjust.bundledocs.com subs.bundledocs.com static.olark.com accounts.google.com docs.google.com content.googleapis.com;frame-ancestors 'self';form-action 'self';manifest-src 'self';style-src 'self' 'unsafe-inline' static.olark.com;img-src * 'self' data: blob:;font-src 'self';media-src 'self' static.olark.com;connect-src 'self' https://blobs.bundledocs.com knrpc.olark.com graph.microsoft.com https://signalr.bundledocs.com wss://bundledocs.service.signalr.net https://bundledocs.service.signalr.net;"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"CustomIndexGroupKey\": 0,\n            \"ZipIndexSource\": 0,\n            \"ZipIndexSourceSection\": 0,\n            \"ZipIndexSourceCode\": null,\n            \"ZipIndexSourceCodeSection\": null,\n            \"PageNumberOffset\": 0,\n            \"Status\": 0,\n            \"OcrStatus\": 0,\n            \"Type\": \"DOCUMENT\",\n            \"Description\": \"./cloudFiles/dFx0qTR9M/JPG_TEST\",\n            \"BorderColor\": null,\n            \"PageRange\": \"\",\n            \"FileUploadBatch\": null,\n            \"FileUploadKey\": \"\",\n            \"BurstRange\": null,\n            \"IsExpanded\": false,\n            \"IsContinuation\": false,\n            \"IsIncluded\": true,\n            \"IsSimpleInsert\": false,\n            \"IsStrikeOut\": false,\n            \"IsLateInsert\": false,\n            \"IsHiddenOnIndexPages\": false,\n            \"IsBookmarkDisplayExclusive\": false,\n            \"IsUsingSourceFileDimensions\": false,\n            \"SourceFilePath\": null,\n            \"PdfFilePath\": null,\n            \"ParentRowKey\": \"12516939446789320461_cddd720d-294c-4ac0-bcec-33b5d69c1ccd\",\n            \"DisplayOrder\": \"1.4\",\n            \"DisplayOrderStatic\": null,\n            \"NumberOfPages\": 0,\n            \"FileName\": \"./cloudFiles/dFx0qTR9M/JPG_TEST\",\n            \"FileSize\": null,\n            \"FileExtension\": \".jpg\",\n            \"DisplayDate\": \"2024-02-22T00:00:00Z\",\n            \"DisplayDateFormat\": \"yyyy-MM-dd\",\n            \"DisplayDatePrinted\": \"2024-02-22\",\n            \"DateRegenerated\": \"2024-02-22T12:27:11.1637581Z\",\n            \"CustomColumnText\": \"\",\n            \"XRef\": \"\",\n            \"XRefAlt\": \"\",\n            \"XRefAltSource\": 0,\n            \"DocumentReferenceRowKey\": \"\",\n            \"BatesStamp\": \"\",\n            \"BatesStampStart\": 0,\n            \"BatesStampPrefix\": \"\",\n            \"BatesStampSuffix\": \"\",\n            \"BatesStampLength\": 0,\n            \"IsBatesStampLocked\": false,\n            \"BatesStampSequence\": 0,\n            \"IsSplitPoint\": false,\n            \"PageSize\": 0,\n            \"StampType\": 0,\n            \"Children\": [],\n            \"Annotations\": [],\n            \"Metadata\": null,\n            \"SourceFileDataUrlBlocks\": null,\n            \"PartitionKey\": \"12518831791428262796_d0612ca6-bbb5-4c18-9483-0f26d21de644\",\n            \"RowKey\": \"12516936959692724964_60ca2e2b-4bfd-4b23-8bed-c9db3be14d71\",\n            \"Timestamp\": null,\n            \"Created\": \"2024-02-22T12:27:10.7275065Z\",\n            \"LastAccessedTimeStamp\": \"2024-02-22T12:27:10.7275065Z\",\n            \"ForeignKey\": \"12516939446789535547_06eb772e-f56a-483d-9a4c-5992d2718827\",\n            \"IsDeleted\": false\n        }\n    ]\n}"}],"_postman_id":"77cfc10d-7088-4a36-b380-5c989cf58556"}],"id":"21349eaa-e086-4bbe-b1a5-b6f5066d3cc4","description":"<p>This section will get you started on creating a bundle and a section, and adding a document to the section.</p>\n","event":[{"listen":"prerequest","script":{"id":"fdc8deb1-53b2-435a-981f-f2800a32b2a3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4addd1a7-baf0-44c2-ae99-387b24b2af40","type":"text/javascript","exec":[""]}}],"_postman_id":"21349eaa-e086-4bbe-b1a5-b6f5066d3cc4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","type":"collection"}}},{"name":"Adding a Document to an Existing Section","item":[{"name":"Get Current User Info and All Accessible Bundles","id":"050d8384-146d-4148-ba49-2040204c8bd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken"}],"url":"https://app.bundledocs.com:443/api/v1/users/me","description":"<p>Use this endpoint to get the <code>PartitionKey</code> and <code>RowKey</code> of the bundle that contains the section you want to add the document to.</p>\n","urlObject":{"path":["api","v1","users","me"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[]}},"response":[{"id":"c397852e-9e70-4b70-83b0-2fce8759ae25","name":"Get Current User Info and All Accessible Bundles","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken"}],"url":"https://app.bundledocs.com:443/api/v1/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"4007"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Tue, 06 Aug 2019 13:12:36 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"Type\": \"DEFAULT_USER\",\n            \"Domain\": \"https://app.bundledocs.com\",\n            \"Email\": \"developer@company.com\",\n            \"FirstName\": \"\",\n            \"LastName\": \"\",\n            \"PhoneNumber\": \"\",\n            \"Address1\": \"\",\n            \"Address2\": \"\",\n            \"Address3\": \"\",\n            \"Address4\": \"\",\n            \"Company\": \"\",\n            \"Locale\": \"en\",\n            \"TimeZoneId\": \"Dateline Standard Time\",\n            \"CountryCode\": \"IE\",\n            \"VatNumber\": null,\n            \"BriefIndexTitleText\": \"Index\",\n            \"BriefIndexPageNumberHeaderText\": \"Page(s)\",\n            \"BriefIndexDisplayDateHeaderText\": \"\",\n            \"BriefIndexCustomColumnHeaderText\": \"\",\n            \"BriefDisplayDateFormat\": \"yyyy-MM-dd\",\n            \"IsUsingSourceFileDimensions\": false,\n            \"IsUsingEmailAttachments\": false,\n            \"IsVisibleToGroups\": true,\n            \"BriefZoomLevel\": 0,\n            \"BriefBlobStorageAccountName\": null,\n            \"DefaultTemplateRowKey\": null,\n            \"BriefSectionIndexFontType\": \"TIMES_BOLD\",\n            \"BriefSectionIndexFontSize\": \"EXTRA_SMALL\",\n            \"BriefSectionIndexFontColor\": \"#000000\",\n            \"BriefDocumentIndexFontType\": \"TIMES\",\n            \"BriefDocumentIndexFontSize\": \"EXTRA_SMALL\",\n            \"BriefDocumentIndexFontColor\": \"#000000\",\n            \"BriefPageNumberFontType\": \"COURIER_BOLD\",\n            \"BriefPageNumberFontSize\": \"MEDIUM\",\n            \"BriefPageNumberFontColor\": \"#000000\",\n            \"BriefSectionBorderColor\": \"#ffffff\",\n            \"IsSendEmailBriefGenerated\": true,\n            \"IsSendEmailBriefDeleted\": true,\n            \"StripeSubscriberKey\": \"cus_FGs8KinlcUxDLj\",\n            \"StripeSubscriberCurrencyCode\": \"GBP\",\n            \"Briefs\": [\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372038991640757_f23f2726-ac9c-43cd-b393-b8de6b04a741\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"TestCode\",\n                    \"Title\": \"New Test Bundle\",\n                    \"Description\": \"New Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T13:08:20.8359242Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T13:08:20.8359242Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372038991640757_f23f2726-ac9c-43cd-b393-b8de6b04a741\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372087498376208_9ac04974-7f80-47d8-9afe-1954548aaf22\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"TestCode\",\n                    \"Title\": \"New Test Bundle\",\n                    \"Description\": \"New Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T11:47:30.1623791Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T11:47:30.1623791Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372087498376208_9ac04974-7f80-47d8-9afe-1954548aaf22\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372114963987110_6f7948a8-3722-4c20-90ab-d372f3ea1dbb\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"TestCode\",\n                    \"Title\": \"New Test Bundle\",\n                    \"Description\": \"New Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T11:01:43.6012889Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T11:29:09.4948705Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372114963987110_6f7948a8-3722-4c20-90ab-d372f3ea1dbb\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372117174670039_e8d82971-bb5e-41fc-a5af-297552017cbd\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"TestCode\",\n                    \"Title\": \"New Test Bundle\",\n                    \"Description\": \"New Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T10:58:02.532996Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T10:58:02.532996Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372117174670039_e8d82971-bb5e-41fc-a5af-297552017cbd\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372129459205608_45f23bec-f5a7-4fa8-a665-e973fdd4e76b\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"Test\",\n                    \"Title\": \"Test Bundle\",\n                    \"Description\": \"Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T10:37:34.0794391Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T10:37:34.0794391Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372129459205608_45f23bec-f5a7-4fa8-a665-e973fdd4e76b\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372140364691844_1732c3c8-a84c-4687-bbf2-a60c67f4a435\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"Test\",\n                    \"Title\": \"Test Bundle\",\n                    \"Description\": \"Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T10:19:23.5308155Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T10:19:23.5308155Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372140364691844_1732c3c8-a84c-4687-bbf2-a60c67f4a435\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372141124164410_baeb3658-b000-42bd-bbbe-438342ad4134\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"Test\",\n                    \"Title\": \"Test Bundle\",\n                    \"Description\": \"Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T10:18:07.5835589Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T10:18:07.5835589Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372141124164410_baeb3658-b000-42bd-bbbe-438342ad4134\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518372141329682610_dc0530a6-671e-4ecd-82c3-0ee56fda7f3e\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"Test\",\n                    \"Title\": \"Test Bundle\",\n                    \"Description\": \"Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": false,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": null,\n                    \"DocumentDescriptionFontSize\": null,\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-06T10:17:47.0317389Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-06T10:17:47.0317389Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518372141329682610_dc0530a6-671e-4ecd-82c3-0ee56fda7f3e\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                },\n                {\n                    \"PdfFilePath\": \"/Secure/Download?d=BP&p=12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee&k=12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\",\n                    \"PdfFileLength\": 0,\n                    \"IsLocked\": false,\n                    \"GenerateStatus\": 0,\n                    \"Code\": \"Test\",\n                    \"Title\": \"My Test Bundle\",\n                    \"Description\": \"My Test Bundle\",\n                    \"IndexTitleText\": \"Index\",\n                    \"IndexPageNumberHeaderText\": \"Page(s)\",\n                    \"IndexDisplayDateHeaderText\": \"\",\n                    \"IndexCustomColumnHeaderText\": \"\",\n                    \"IsBriefSectionHeadersIncluded\": false,\n                    \"IsSectionIndexPagesRemoved\": false,\n                    \"IsSuperIndexPagesRemoved\": false,\n                    \"IsSuperTitlePageRemoved\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInTree\": false,\n                    \"IsBriefDocumentCustomColumnTextVisibleInTree\": false,\n                    \"IsBriefDocumentDisplayDateVisibleInIndex\": false,\n                    \"IsPageNumberingResetPerBook\": false,\n                    \"IsPageNumberPrintedOnIndexPages\": false,\n                    \"IsPageNumberPrintedOnIndexPagesGlobal\": false,\n                    \"IsPageNumberPrintedOnTitlePages\": false,\n                    \"IsPageNumberPrintedOnGlobalTitlePage\": false,\n                    \"IsPageNumberPrintedOnIndexPagesSeparate\": false,\n                    \"IsPageNumberSupressedOnDocuments\": false,\n                    \"IsPageNumberSupressedOnIndexPages\": false,\n                    \"IsPageNumberPrefixedWithSectionNumber\": false,\n                    \"IsSectionNumberNumeric\": false,\n                    \"SectionNumberStart\": 1,\n                    \"IsLateInsertNumberNumeric\": true,\n                    \"IsLateInsertPageNumberNumeric\": true,\n                    \"IsDisplayOrderHiddenDocument\": false,\n                    \"IsDisplayOrderHiddenSection\": false,\n                    \"IsDisplayOrderHiddenVolume\": false,\n                    \"PageNumberingPositionVertical\": \"BOTTOM\",\n                    \"PageNumberingPositionHorizontal\": \"RIGHT\",\n                    \"IsDocumentDescriptionPrintedOnDocuments\": false,\n                    \"DocumentDescriptionSource\": 0,\n                    \"DocumentDescriptionSourceCode\": \"\",\n                    \"DocumentDescriptionPositionVertical\": \"BOTTOM\",\n                    \"DocumentDescriptionPositionHorizontal\": \"LEFT\",\n                    \"IsDisplayOrderGlobal\": false,\n                    \"IsSplitAndZip\": false,\n                    \"IsSourceAndZip\": false,\n                    \"IsZipWithSubFolders\": false,\n                    \"IsZipWithFullBundle\": false,\n                    \"IsZipWithoutFileNames\": false,\n                    \"IsGenerateWithVolumes\": false,\n                    \"IsGenerateWithoutDocuments\": false,\n                    \"IsGenerateWithVacatPages\": false,\n                    \"IsGenerateWithVacatPagesDocuments\": false,\n                    \"IsGenerateWithLateInsertsOnly\": false,\n                    \"IsGenerateWithCustomColumnText\": false,\n                    \"BriefDocuments\": [],\n                    \"BriefReceipts\": [],\n                    \"BriefShares\": null,\n                    \"BriefCollaborators\": [],\n                    \"BriefVisibleTos\": [],\n                    \"MigrationInvitation\": null,\n                    \"IsBatesPageNumberIncluded\": false,\n                    \"BatesPageNumberPrefix\": \"\",\n                    \"BatesPageNumberSuffix\": \"\",\n                    \"BatesPageNumberStart\": 1,\n                    \"BatesPageNumberLength\": 1,\n                    \"IsWatermarked\": false,\n                    \"WatermarkType\": \"\",\n                    \"IsRedactionsExcludedGlobal\": false,\n                    \"IsHighlightsExcludedGlobal\": false,\n                    \"IsNotesExcludedGlobal\": false,\n                    \"IsLabelsExcludedGlobal\": false,\n                    \"BriefAnnotationExclusionPolicy\": 0,\n                    \"BriefAnnotationExclusions\": null,\n                    \"IsGenerateWithPrivateAnnotations\": false,\n                    \"IsBriefOpen\": false,\n                    \"IsVisibleToGroups\": true,\n                    \"IsReadOnlyToGroups\": false,\n                    \"AccessType\": 0,\n                    \"IsHidden\": false,\n                    \"TemplatePartitionKey\": null,\n                    \"TemplateRowKey\": null,\n                    \"BriefDocumentDisplayDateFormat\": \"yyyy-MM-dd\",\n                    \"SectionIndexFontSize\": \"EXTRA_SMALL\",\n                    \"SectionIndexFontType\": \"TIMES_BOLD\",\n                    \"SectionIndexFontColor\": \"#000000\",\n                    \"DocumentIndexFontSize\": \"EXTRA_SMALL\",\n                    \"DocumentIndexFontType\": \"TIMES\",\n                    \"DocumentIndexFontColor\": \"#000000\",\n                    \"PageNumberFontType\": \"COURIER_BOLD\",\n                    \"PageNumberFontSize\": \"MEDIUM\",\n                    \"PageNumberFontColor\": \"#000000\",\n                    \"DocumentDescriptionFontType\": \"COURIER\",\n                    \"DocumentDescriptionFontSize\": \"PT10\",\n                    \"DocumentDescriptionFontColor\": \"#000000\",\n                    \"SectionBorderColor\": \"#ffffff\",\n                    \"ZoomLevel\": 0,\n                    \"NumberOfPages\": 0,\n                    \"BlobStorageAccountName\": null,\n                    \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"Created\": \"2019-08-01T11:19:38.8363169Z\",\n                    \"LastAccessedTimeStamp\": \"2019-08-01T14:48:57.3393898Z\",\n                    \"IsDeleted\": false,\n                    \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                    \"RowKey\": \"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\",\n                    \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                    \"ETag\": null\n                }\n            ],\n            \"IsAdmin\": false,\n            \"Username\": \"developer@company.com\",\n            \"ForeignKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"Created\": \"2017-11-29T11:32:29.958Z\",\n            \"LastAccessedTimeStamp\": \"2017-11-29T11:32:29.958Z\",\n            \"IsDeleted\": false,\n            \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"RowKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n            \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n            \"ETag\": null\n        }\n    ]\n}"}],"_postman_id":"050d8384-146d-4148-ba49-2040204c8bd9"},{"name":"Get Bundle Content","id":"04713149-b198-48f9-8b58-d8f1a232963a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken"}],"url":"https://app.bundledocs.com:443/api/v1/bundles/:PartitionKey/:RowKey/tree","description":"<p>Use the bundle <code>PartitionKey</code> and <code>RowKey</code> obtained above to get all content within a bundle. From the response take the <code>RowKey</code> of the section you want to add the document to.</p>\n<p>Use the <code>RowKey</code>of the bundle and the <code>RowKey</code> of the section and make a POST request to the <a href=\"#77cfc10d-7088-4a36-b380-5c989cf58556\">Add a Document to a Section</a> endpoint. </p>\n","urlObject":{"path":["api","v1","bundles",":PartitionKey",":RowKey","tree"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[{"description":{"content":"<p>The bundle PartitionKey.</p>\n","type":"text/plain"},"type":"string","value":"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee","key":"PartitionKey"},{"description":{"content":"<p>The bundle RowKey.</p>\n","type":"text/plain"},"type":"string","value":"12518372114963987110_6f7948a8-3722-4c20-90ab-d372f3ea1dbb","key":"RowKey"}]}},"response":[{"id":"e64374c4-f0a3-43dc-a646-17adb764ab7b","name":"Get Bundle Content","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer AccessToken"},{"key":"","value":"","type":"text","disabled":true}],"url":{"raw":"https://app.bundledocs.com:443/api/v1/bundles/:PartitionKey/:RowKey/tree","host":["https://app.bundledocs.com:443"],"path":["api","v1","bundles",":PartitionKey",":RowKey","tree"],"variable":[{"key":"PartitionKey","value":"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee","description":"The bundle `PartitionKey`."},{"key":"RowKey","value":"12518372114963987110_6f7948a8-3722-4c20-90ab-d372f3ea1dbb","description":"The bundle `RowKey`."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"754"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Tue, 06 Aug 2019 13:13:17 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        [\n            {\n                \"Type\": \"HEADER\",\n                \"Description\": \"Default Bundle Section\",\n                \"BorderColor\": \"#ffffff\",\n                \"PageRange\": null,\n                \"FileUploadKey\": null,\n                \"BurstRange\": null,\n                \"IsExpanded\": true,\n                \"IsContinuation\": false,\n                \"IsIncluded\": true,\n                \"IsSimpleInsert\": false,\n                \"IsStrikeOut\": false,\n                \"IsLateInsert\": false,\n                \"IsHiddenOnIndexPages\": false,\n                \"IsUsingSourceFileDimensions\": false,\n                \"SourceFilePath\": null,\n                \"PdfFilePath\": null,\n                \"ParentRowKey\": \"\",\n                \"DisplayOrder\": \"1\",\n                \"NumberOfPages\": 1,\n                \"FileName\": null,\n                \"FileSize\": null,\n                \"FileExtension\": null,\n                \"DisplayDate\": \"2019-08-06T11:01:43Z\",\n                \"DisplayDateFormat\": null,\n                \"DisplayDatePrinted\": null,\n                \"DateRegenerated\": \"2019-08-06T11:01:43.7106641Z\",\n                \"CustomColumnText\": \"\",\n                \"Children\": [],\n                \"Annotations\": [],\n                \"ForeignKey\": \"12518372114963987110_6f7948a8-3722-4c20-90ab-d372f3ea1dbb\",\n                \"Created\": \"2019-08-06T11:01:43.7106641Z\",\n                \"LastAccessedTimeStamp\": \"2019-08-06T11:01:43.7106641Z\",\n                \"IsDeleted\": false,\n                \"PartitionKey\": \"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\",\n                \"RowKey\": \"12518372114962893358_685aa0a0-abca-4e61-9148-207c4e5b7019\",\n                \"Timestamp\": \"0001-01-01T00:00:00+00:00\",\n                \"ETag\": null\n            }\n        ]\n    ]\n}"}],"_postman_id":"04713149-b198-48f9-8b58-d8f1a232963a"}],"id":"01a572b4-c7d4-43d2-9bfe-bc3153a27cdb","description":"<p>To add a document to an existing section you must first:</p>\n<ol>\n<li>Get the <code>PartitionKey</code> and the <code>RowKey</code> of the bundle that contains the section to add the document to.</li>\n<li>Get the <code>RowKey</code> of the section to add the document to.</li>\n</ol>\n<p>Then use the bundle <code>RowKey</code> and section <code>RowKey</code> in a POST request to the <a href=\"#77cfc10d-7088-4a36-b380-5c989cf58556\">Add a Document to a Section</a> endpoint.</p>\n<p>The steps for how to get the <code>RowKeys</code> are documented in more detail below.</p>\n","event":[{"listen":"prerequest","script":{"id":"26985264-5b21-4d8d-ab25-57c4c085d9ac","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a06ea5f5-aea3-4c09-b00b-620e290460d5","type":"text/javascript","exec":[""]}}],"_postman_id":"01a572b4-c7d4-43d2-9bfe-bc3153a27cdb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","type":"collection"}}},{"name":"Advanced","item":[{"name":"Document Upload and Processing Events","item":[{"name":"Get Events Relating to a Document Upload for a Bundle","id":"e505b974-213c-4678-a34c-2f179622d6f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer AccessToken","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"https://app.bundledocs.com:443/api/v1/events/:context","description":"<p>Making a request to this endpoint will return a response containing information about the progress of your upload. The response object can contains an <code>Events</code> property if there are currently events in the queue, or a <code>messages</code> property if there are not. See the above <a href=\"#73723c2e-444a-4202-9100-b94f98044162\">Document Upload and Processing Events</a> section for more information on this response.</p>\n","urlObject":{"path":["api","v1","events",":context"],"host":["https://app.bundledocs.com:443"],"query":[],"variable":[{"description":{"content":"<p>The bundle RowKey.</p>\n","type":"text/plain"},"type":"string","value":"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982","key":"context"}]}},"response":[{"id":"a0ea13ee-69c2-4e77-880b-6c2679068222","name":"Get Events Relating to a Document Upload for a Bundle  - No Events in Queue","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer AccessToken","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"https://app.bundledocs.com:443/api/v1/events/:context","host":["https://app.bundledocs.com:443"],"path":["api","v1","events",":context"],"variable":[{"key":"context","value":"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982","description":"The bundle RowKey."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"192"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"TiPMix=38.399857719615; path=/; HttpOnly; Domain=app.bundledocs.com:443"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Wed, 07 Aug 2019 14:39:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"messages\": [\n        {\n            \"scope\": 3,\n            \"message\": \"Query User Action Console\",\n            \"description\": \"\",\n            \"id\": \"\"\n        }\n    ]\n}"},{"id":"ef2522bf-5638-4a02-9dea-8d1a39549d26","name":"Get Events Relating to a Document Upload for a Bundle","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer AccessToken","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"https://app.bundledocs.com:443/api/v1/events/:context","host":["https://app.bundledocs.com:443"],"path":["api","v1","events",":context"],"variable":[{"key":"context","value":"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982","description":"The bundle RowKey."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1543"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Set-Cookie","value":"TiPMix=33.926218111965; path=/; HttpOnly; Domain=app.bundledocs.com:443"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"Arr-Disable-Session-Affinity","value":"true"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Referrer-Policy","value":"origin"},{"key":"Date","value":"Wed, 07 Aug 2019 14:38:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"name\": \"UAC_BriefDocumentUpload_Progress_Begin\",\n            \"data\": {\n                \"Id\": \"\",\n                \"Message\": \"Test Document 3.docx\",\n                \"Context\": \"Test Document 3.docx\",\n                \"Data\": null\n            }\n        },\n        {\n            \"name\": \"UAC_CreateBriefDocument\",\n            \"data\": {\n                \"text\": \"<div id='leaf_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3' class='tree_leaf_container tree_document_container  ' data-row-key='12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'><div data-tooltip='Includes document in a bulk move/copy/delete action' class='tree_item_column_three pnl_BulkAction_Switch tiptip'> <input class='chk_BulkAction' type='checkbox' data-row-key='12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3' value='BULKACTION' id='chk_BulkAction_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'/> </div><div class='tree_item_column_one tiptip  '  data-tooltip='Test Document 3'  ><span class='txt_tree_item_display_order' id='txt_tree_item_display_order_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'><span>1.7</span></span> <span class='tree_item_display_order_separator'><span>..</span></span> <span class='txt_tree_item_description' id='txt_tree_item_description_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'><span>Test Document 3</span></span></div><div data-tooltip='Edit-Details' class='tree_item_column_two btn_edit_BriefDocument tiptip'  data-row-key='12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'></div><div data-tooltip='Include/Exclude' class='tree_item_column_three pnl_IsIncluded pnl_DocumentExcluder_Switch tiptip greenBackGround'><input class='chk_DocumentExcluder chk_IsIncluded ' type='checkbox' checked='checked' data-row-key='12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3' value='True' id='chk_ToggleInclude_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3'/><label for='chk_ToggleInclude_12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3' data-row-key='12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3' class='lbl_IsIncluded'></label></div></div>\",\n                \"id\": \"1.7\",\n                \"leaf\": true,\n                \"cls\": \"file\",\n                \"icon\": \"/Assets/img/custom-icons/doctree-icon-file-word.png?v=1.45.0-bd\",\n                \"rowKey\": \"12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3\",\n                \"children\": null\n            }\n        },\n        {\n            \"name\": \"UAC_BriefDocumentUpload_Progress_End\",\n            \"data\": {\n                \"Id\": \"\",\n                \"Message\": \"Test Document 3.docx\",\n                \"Context\": \"Test Document 3.docx\",\n                \"Data\": null\n            }\n        },\n        {\n            \"name\": \"UAC_BriefDocumentProcessing_Begin\",\n            \"data\": {\n                \"Id\": \"\",\n                \"Message\": \"Test Document 3\",\n                \"Context\": \"Test Document 3\",\n                \"Data\": null\n            }\n        },\n        {\n            \"name\": \"UAC_BriefDocumentProcessing_End\",\n            \"data\": {\n                \"Id\": \"\",\n                \"Message\": \"Test Document 3\",\n                \"Context\": \"Test Document 3\",\n                \"Data\": \"{\\\"Type\\\":\\\"DOCUMENT\\\",\\\"Description\\\":\\\"Test Document 3\\\",\\\"BorderColor\\\":null,\\\"PageRange\\\":\\\"\\\",\\\"FileUploadKey\\\":\\\"\\\",\\\"BurstRange\\\":null,\\\"IsExpanded\\\":false,\\\"IsContinuation\\\":false,\\\"IsIncluded\\\":true,\\\"IsSimpleInsert\\\":false,\\\"IsStrikeOut\\\":false,\\\"IsLateInsert\\\":false,\\\"IsHiddenOnIndexPages\\\":false,\\\"IsUsingSourceFileDimensions\\\":false,\\\"SourceFilePath\\\":null,\\\"PdfFilePath\\\":null,\\\"ParentRowKey\\\":\\\"12518376424211167669_db94b986-9a9a-418b-8c80-c2b928e9f92e\\\",\\\"DisplayOrder\\\":\\\"1.7\\\",\\\"NumberOfPages\\\":1,\\\"FileName\\\":\\\"Test Document 3\\\",\\\"FileSize\\\":\\\"1 KB\\\",\\\"FileExtension\\\":\\\".docx\\\",\\\"DisplayDate\\\":\\\"2019-08-07T00:00:00Z\\\",\\\"DisplayDateFormat\\\":\\\"yyyy-MM-dd\\\",\\\"DisplayDatePrinted\\\":\\\"2019-08-06\\\",\\\"DateRegenerated\\\":\\\"2019-08-07T14:36:56.7609777Z\\\",\\\"CustomColumnText\\\":\\\"\\\",\\\"Children\\\":[],\\\"Annotations\\\":[],\\\"ForeignKey\\\":\\\"12518376424211636830_2183b068-cbfe-4e20-bac4-73cfc11ff982\\\",\\\"Created\\\":\\\"2019-08-07T14:36:52.3058546Z\\\",\\\"LastAccessedTimeStamp\\\":\\\"2019-08-07T14:36:52.3058546Z\\\",\\\"IsDeleted\\\":false,\\\"PartitionKey\\\":\\\"12518903456500411469_1817bb42-01fd-4463-9930-6801a45b52ee\\\",\\\"RowKey\\\":\\\"12518371121876941453_116f2be1-87f6-4582-903b-a829b8a41db3\\\",\\\"Timestamp\\\":\\\"0001-01-01T00:00:00+00:00\\\",\\\"ETag\\\":null}\"\n            }\n        }\n    ]\n}"}],"_postman_id":"e505b974-213c-4678-a34c-2f179622d6f4"}],"id":"73723c2e-444a-4202-9100-b94f98044162","description":"<p>After uploading a document to a section Bundledocs will convert the document in the background. This will create a number of events and <code>event</code> objects. You can query the progress of the document by visiting the <a href=\"#e505b974-213c-4678-a34c-2f179622d6f4\">Get Events Relating to a Document Upload</a> endpoint. Making a request to this endpoint will return a response object that contains a <code>Messages</code> property or an <code>Events</code> property.</p>\n<p><em>Note: Events can only be retrieved from the queue once. After retrieval the event is no longer available.</em></p>\n<h3 id=\"events-property\">Events Property</h3>\n<p>The property containing events is called <code>data</code> and it is an array of <code>event</code> objects. There are five possible types of document upload and processing events (outlined below) and the most common attributes for each of these are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>The name of the event.</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>An array of attributes that contain further information about the event. Notable attributes are: <code>Id</code> which is the <code>fileUploadKey</code> and identities the specific file. <code>Message</code> which is the name of the file.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"types-of-upload-and-processing-events\">Types of Upload and Processing Events</h4>\n<p><strong>UAC_BriefDocumentUpload_Progress_Begin</strong>\nThis event indicates that the document has been received by the server.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"name\": \"UAC_BriefDocumentUpload_Progress_Begin\",\n    \"data\": {\n        \"Id\": \"5435c883-d83d-84c6-ac7d-d4a6fbead3a8\",\n        \"Message\": \"Test Document 1.docx\",\n        \"Context\": \"Test Document 1.docx\",\n    }\n}\n</code></pre>\n<p><strong>UAC_BriefDocumentUpload_Progress_End</strong>\nThis events indicates that the document has been added to teh document conversion queue.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"name\": \"UAC_BriefDocumentUpload_Progress_End\",\n    \"data\": {\n        \"Id\": \"5435c883-d83d-84c6-ac7d-d4a6fbead3a8\",\n        \"Message\": \"Test Document 1.docx\",\n        \"Context\": \"Test Document 1.docx\",\n    }\n}\n</code></pre>\n<p><strong>UAC_BriefDocumentProcessing_Begin</strong>\nThis event indicates that the conversion process has begun.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"name\": \"UAC_BriefDocumentProcessing_Begin\",\n    \"data\": {\n        \"Id\": \"5435c883-d83d-84c6-ac7d-d4a6fbead3a8\",\n        \"Message\": \"Test Document 1\",\n        \"Context\": \"Test Document 1\",\n    }\n}\n\n</code></pre>\n<p><strong>UAC_BriefDocumentProcessing_End</strong>\nThis events indicates that the conversion process has completed successfully.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"name\": \"UAC_BriefDocumentProcessing_End\",\n    \"data\": {\n        \"Id\": \"5435c883-d83d-84c6-ac7d-d4a6fbead3a8\",\n        \"Message\": \"Test Document 1\",\n        \"Context\": \"Test Document 1\",\n    }\n}\n</code></pre>\n<p><strong>UAC_BriefDocumentProcessing_Fail</strong>\nThis event indicates that the conversion process has failed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"name\": \"UAC_BriefDocumentProcessing_Fail\",\n    \"data\": {\n        \"Id\": \"2a5ff2ae-1a48-48c2-d282-0ac9b56f6661\",\n        \"Message\": \"Test Document 2\",\n        \"Context\": \"Test Document 2\",\n        \"Data\": null\n    }\n}\n</code></pre>\n<h3 id=\"messages-property\">Messages Property</h3>\n<p>The <code>Messages</code> property is an array of <code>Message</code> objects. The most important attribute is the <code>message</code> attribute, and the most common <code>message</code> is \"Query User Action Console\" which indicates that there currently are no events for the <code>fileUploadKey</code> in the events queue.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-Json\">{\n    \"messages\": [{\n        \"scope\": 3,\n        \"message\": \"Query User Action Console\",\n        \"description\": \"\",\n        \"id\": \"\"\n    }]\n}\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"5a322cdb-d42e-45bd-8033-8fd4d9be976f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6d99aadf-6760-4a29-9513-a981b722d38d","type":"text/javascript","exec":[""]}}],"_postman_id":"73723c2e-444a-4202-9100-b94f98044162","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","type":"collection"}}}],"id":"59f835ff-96d6-4be5-8a40-75c35bfc05ff","_postman_id":"59f835ff-96d6-4be5-8a40-75c35bfc05ff","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","id":"978a30ac-cba2-4af0-bff6-0fcdc5bd37e4","name":"Bundledocs API Guide","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]}},"event":[{"listen":"prerequest","script":{"id":"b2e40676-aa4c-425a-8707-fa1fab09c53d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6aecfcd8-f1e5-483d-9158-1039d143f5b1","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://app.bundledocs.com:443"},{"key":"AccessToken","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJFeHBpcnkiOjYzODQ0MjQ0Mzc4OTU5NTA3MywiU2lnbmF0dXJlIjoiODVjMWMxZjY0OTNiNGIwZTkwMjQ2ZWNjZTBjMTc2YmI0YzhmMjhkNzlkZDU0N2M3YTQwM2E0ZmM1ZDNiY2MxZSIsIlBhcnRpdGlvbktleSI6IjEyNTE4ODMxNzkxNDI4MjYyNzk2X2QwNjEyY2E2LWJiYjUtNGMxOC05NDgzLTBmMjZkMjFkZTY0NCIsIlJvd0tleSI6IjEyNTE5MjQ4MTE4NTExMTQ5ODMwXzk2NTM3MGJlLTQ2YTItNGZiMi04N2M0LTI0MjQxOWUzNjllYyJ9.7kq8z5G_2FdNJaynnn2nbfMJl0DJZkh4PoxkWjVBlYc"}]}