{ "opencollection": "1.0.0", "info": { "name": "Templafy Public DataSourceFields Pdfs API", "version": "v3" }, "items": [ { "info": { "name": "Pdfs", "type": "folder" }, "items": [ { "info": { "name": "Lists all pdf assets in the folder.", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantId}.api.templafy.com/v3/libraries/:spaceId/pdfs/folders/:folderId/assets", "params": [ { "name": "spaceId", "value": "", "type": "path", "description": "The identifier of the space" }, { "name": "folderId", "value": "", "type": "path", "description": "The identifier of the folder" }, { "name": "searchQuery", "value": "", "type": "query", "description": "Filter on pdf name, description and tags" }, { "name": "pageNumber", "value": "", "type": "query", "description": "Page number from the result set. Page number is set to 1 by default if {searchQuery} is passed. A value passed only for the page number and not for the page size is ignored." }, { "name": "pageSize", "value": "", "type": "query", "description": "Size of the returned page. If {searchQuery} is not set, not passing page size or having it 0 returns all the assets from the folder. Acceptable values are 0 to 1000, inclusive." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "The result does not include pdfs from subfolders. When {searchQuery} is used the result includes pdfs from subfolders. The search mode enables pagination with 1000 page size maximum." }, { "info": { "name": "Uploads the pdf file.", "type": "http" }, "http": { "method": "POST", "url": "https://{tenantId}.api.templafy.com/v3/libraries/:spaceId/pdfs/folders/:folderId/assets", "params": [ { "name": "spaceId", "value": "", "type": "path", "description": "The identifier of the space" }, { "name": "folderId", "value": "", "type": "path", "description": "The identifier of the folder" } ], "body": { "type": "multipart-form", "data": [ { "name": "File", "type": "text", "value": "" }, { "name": "Name", "type": "text", "value": "" }, { "name": "Description", "type": "text", "value": "" }, { "name": "Tags", "type": "text", "value": "" }, { "name": "ExternalData", "type": "text", "value": "" } ] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Only one file can be attached to the request body. The supported file format is .PDF" }, { "info": { "name": "Returns the pdf by the identifier.", "type": "http" }, "http": { "method": "GET", "url": "https://{tenantId}.api.templafy.com/v3/libraries/:spaceId/pdfs/assets/:assetId", "params": [ { "name": "spaceId", "value": "", "type": "path", "description": "The identifier of the space" }, { "name": "assetId", "value": "", "type": "path", "description": "The identifier of the pdf to retrieve" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns the pdf by the identifier." }, { "info": { "name": "Updates the pdf asset.", "type": "http" }, "http": { "method": "PATCH", "url": "https://{tenantId}.api.templafy.com/v3/libraries/:spaceId/pdfs/assets/:assetId", "params": [ { "name": "spaceId", "value": "", "type": "path", "description": "The identifier of the space" }, { "name": "assetId", "value": "", "type": "path", "description": "The identifier of the pdf asset" } ], "body": { "type": "multipart-form", "data": [ { "name": "FolderId", "type": "text", "value": "" }, { "name": "Name", "type": "text", "value": "" }, { "name": "Description", "type": "text", "value": "" }, { "name": "Tags", "type": "text", "value": "" }, { "name": "ExternalData", "type": "text", "value": "" }, { "name": "File", "type": "text", "value": "" } ] }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Only one file can be attached to the request body. The supported file format is .PDF" }, { "info": { "name": "Deletes the pdf by the identifier.", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenantId}.api.templafy.com/v3/libraries/:spaceId/pdfs/assets/:assetId", "params": [ { "name": "spaceId", "value": "", "type": "path", "description": "The identifier of the space" }, { "name": "assetId", "value": "", "type": "path", "description": "The identifier of the pdf to delete" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Deletes the pdf by the identifier." } ] } ], "bundled": true }