DocumentActionResponse
Response for document actions.
type DocumentActionResponse {
success: Boolean!
message: String
error: String
contents: String
filename: String
}
Fields
DocumentActionResponse.success
● Boolean!
non-null scalar
Whether the action was successful.
DocumentActionResponse.message
● String
scalar
Optional success message.
DocumentActionResponse.error
● String
scalar
Error message if the action failed.
DocumentActionResponse.contents
● String
scalar
Base64 encoded contents of the file.
DocumentActionResponse.filename
● String
scalar
The name of the file.
Returned By
documentAction
mutation