DocumentsApi

interface DocumentsApi

Functions

Link copied to clipboard
abstract suspend fun createDocument(entityType: String, entityId: Long, contentLength: Long? = null, dateFormat: String, description: String, locale: String, name: String, uploadedInputStream: MultiPartFormDataContent): PostEntityTypeEntityIdDocumentsResponse

Create a Document Note: A document is created using a Multi-part form upload Body Parts name : Name or summary of the document description : Description of the document file : The file to be uploaded Mandatory Fields : file and description Responses:

Link copied to clipboard
abstract suspend fun deleteDocument(entityType: String, entityId: Long, documentId: Long): DeleteEntityTypeEntityIdDocumentsResponse

Remove a Document

Link copied to clipboard
abstract suspend fun downloadFile(entityType: String, entityId: Long, documentId: Long)

Retrieve Binary File associated with Document Request used to download the file associated with the document Example Requests: clients/1/documents/1/attachment loans/1/documents/1/attachment Responses:

Link copied to clipboard
abstract suspend fun getDocument(entityType: String, entityId: Long, documentId: Long): GetEntityTypeEntityIdDocumentsResponse

Retrieve a Document Example Requests: clients/1/documents/1 loans/1/documents/1 client_identifiers/1/documents/1?fields=name,description Responses:

Link copied to clipboard
abstract suspend fun retrieveAllDocuments(entityType: String, entityId: Long): List<GetEntityTypeEntityIdDocumentsResponse>

List documents Example Requests: clients/1/documents client_identifiers/1/documents loans/1/documents?fields=name,description Responses:

Link copied to clipboard
abstract suspend fun updateDocument(entityType: String, entityId: Long, documentId: Long, contentLength: Long? = null, dateFormat: String, description: String, locale: String, name: String, uploadedInputStream: MultiPartFormDataContent): PutEntityTypeEntityIdDocumentsResponse

Update a Document Note: A document is updated using a Multi-part form upload Body Parts name Name or summary of the document description Description of the document file The file to be uploaded Responses: