Module mailslurp_client.api.attachment_controller_api
MailSlurp API
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - Homepage - Get an API KEY - Generated SDK Clients - Examples repository # noqa: E501
The version of the OpenAPI document: 6.5.2 Contact: contact@mailslurp.dev Generated by: https://openapi-generator.tech
Expand source code
# coding: utf-8
"""
MailSlurp API
MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository # noqa: E501
The version of the OpenAPI document: 6.5.2
Contact: contact@mailslurp.dev
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
import re # noqa: F401
# python 2 and python 3 compatibility library
import six
from mailslurp_client.api_client import ApiClient
from mailslurp_client.exceptions import ( # noqa: F401
ApiTypeError,
ApiValueError
)
class AttachmentControllerApi(object):
"""NOTE: This class is auto generated by OpenAPI Generator
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient()
self.api_client = api_client
def delete_all_attachments(self, **kwargs): # noqa: E501
"""Delete all attachments # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_all_attachments(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: None
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.delete_all_attachments_with_http_info(**kwargs) # noqa: E501
def delete_all_attachments_with_http_info(self, **kwargs): # noqa: E501
"""Delete all attachments # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_all_attachments_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: None
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method delete_all_attachments" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments', 'DELETE',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type=None, # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def delete_attachment(self, attachment_id, **kwargs): # noqa: E501
"""Delete an attachment # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_attachment(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: None
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.delete_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501
def delete_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501
"""Delete an attachment # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_attachment_with_http_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: None
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'attachment_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method delete_attachment" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'attachment_id' is set
if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501
local_var_params['attachment_id'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `attachment_id` when calling `delete_attachment`") # noqa: E501
collection_formats = {}
path_params = {}
if 'attachment_id' in local_var_params:
path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/{attachmentId}', 'DELETE',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type=None, # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def download_attachment_as_base64_encoded(self, attachment_id, **kwargs): # noqa: E501
"""Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501
Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_base64_encoded(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: DownloadAttachmentDto
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.download_attachment_as_base64_encoded_with_http_info(attachment_id, **kwargs) # noqa: E501
def download_attachment_as_base64_encoded_with_http_info(self, attachment_id, **kwargs): # noqa: E501
"""Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501
Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_base64_encoded_with_http_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(DownloadAttachmentDto, status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'attachment_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method download_attachment_as_base64_encoded" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'attachment_id' is set
if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501
local_var_params['attachment_id'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_base64_encoded`") # noqa: E501
collection_formats = {}
path_params = {}
if 'attachment_id' in local_var_params:
path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/{attachmentId}/base64', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='DownloadAttachmentDto', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def download_attachment_as_bytes(self, attachment_id, **kwargs): # noqa: E501
"""Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501
Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_bytes(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: str
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.download_attachment_as_bytes_with_http_info(attachment_id, **kwargs) # noqa: E501
def download_attachment_as_bytes_with_http_info(self, attachment_id, **kwargs): # noqa: E501
"""Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501
Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_bytes_with_http_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(str, status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'attachment_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method download_attachment_as_bytes" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'attachment_id' is set
if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501
local_var_params['attachment_id'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_bytes`") # noqa: E501
collection_formats = {}
path_params = {}
if 'attachment_id' in local_var_params:
path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/octet-stream']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/{attachmentId}/bytes', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='str', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def get_attachment(self, attachment_id, **kwargs): # noqa: E501
"""Get an attachment entity # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: AttachmentEntity
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.get_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501
def get_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501
"""Get an attachment entity # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment_with_http_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(AttachmentEntity, status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'attachment_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method get_attachment" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'attachment_id' is set
if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501
local_var_params['attachment_id'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment`") # noqa: E501
collection_formats = {}
path_params = {}
if 'attachment_id' in local_var_params:
path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/{attachmentId}', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='AttachmentEntity', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def get_attachment_info(self, attachment_id, **kwargs): # noqa: E501
"""Get email attachment metadata information # noqa: E501
Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: AttachmentMetaData
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.get_attachment_info_with_http_info(attachment_id, **kwargs) # noqa: E501
def get_attachment_info_with_http_info(self, attachment_id, **kwargs): # noqa: E501
"""Get email attachment metadata information # noqa: E501
Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment_info_with_http_info(attachment_id, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str attachment_id: ID of attachment (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(AttachmentMetaData, status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'attachment_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method get_attachment_info" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'attachment_id' is set
if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501
local_var_params['attachment_id'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment_info`") # noqa: E501
collection_formats = {}
path_params = {}
if 'attachment_id' in local_var_params:
path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/{attachmentId}/metadata', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='AttachmentMetaData', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def get_attachments(self, **kwargs): # noqa: E501
"""Get email attachments # noqa: E501
Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachments(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param int page: Optional page index for list pagination
:param int size: Optional page size for list pagination
:param str sort: Optional createdAt sort direction ASC or DESC
:param str file_name_filter: Optional file name and content type search filter
:param datetime since: Filter by created at after the given timestamp
:param datetime before: Filter by created at before the given timestamp
:param str inbox_id: Optional inboxId to filter attachments by
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: PageAttachmentEntity
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.get_attachments_with_http_info(**kwargs) # noqa: E501
def get_attachments_with_http_info(self, **kwargs): # noqa: E501
"""Get email attachments # noqa: E501
Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachments_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param int page: Optional page index for list pagination
:param int size: Optional page size for list pagination
:param str sort: Optional createdAt sort direction ASC or DESC
:param str file_name_filter: Optional file name and content type search filter
:param datetime since: Filter by created at after the given timestamp
:param datetime before: Filter by created at before the given timestamp
:param str inbox_id: Optional inboxId to filter attachments by
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(PageAttachmentEntity, status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'page',
'size',
'sort',
'file_name_filter',
'since',
'before',
'inbox_id'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method get_attachments" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
if 'page' in local_var_params and local_var_params['page'] is not None: # noqa: E501
query_params.append(('page', local_var_params['page'])) # noqa: E501
if 'size' in local_var_params and local_var_params['size'] is not None: # noqa: E501
query_params.append(('size', local_var_params['size'])) # noqa: E501
if 'sort' in local_var_params and local_var_params['sort'] is not None: # noqa: E501
query_params.append(('sort', local_var_params['sort'])) # noqa: E501
if 'file_name_filter' in local_var_params and local_var_params['file_name_filter'] is not None: # noqa: E501
query_params.append(('fileNameFilter', local_var_params['file_name_filter'])) # noqa: E501
if 'since' in local_var_params and local_var_params['since'] is not None: # noqa: E501
query_params.append(('since', local_var_params['since'])) # noqa: E501
if 'before' in local_var_params and local_var_params['before'] is not None: # noqa: E501
query_params.append(('before', local_var_params['before'])) # noqa: E501
if 'inbox_id' in local_var_params and local_var_params['inbox_id'] is not None: # noqa: E501
query_params.append(('inboxId', local_var_params['inbox_id'])) # noqa: E501
header_params = {}
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments', 'GET',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='PageAttachmentEntity', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def upload_attachment(self, upload_attachment_options, **kwargs): # noqa: E501
"""Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment(upload_attachment_options, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param UploadAttachmentOptions upload_attachment_options: (required)
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: list[str]
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.upload_attachment_with_http_info(upload_attachment_options, **kwargs) # noqa: E501
def upload_attachment_with_http_info(self, upload_attachment_options, **kwargs): # noqa: E501
"""Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_with_http_info(upload_attachment_options, async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param UploadAttachmentOptions upload_attachment_options: (required)
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(list[str], status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'upload_attachment_options'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method upload_attachment" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
# verify the required parameter 'upload_attachment_options' is set
if self.api_client.client_side_validation and ('upload_attachment_options' not in local_var_params or # noqa: E501
local_var_params['upload_attachment_options'] is None): # noqa: E501
raise ApiValueError("Missing the required parameter `upload_attachment_options` when calling `upload_attachment`") # noqa: E501
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = []
local_var_files = {}
body_params = None
if 'upload_attachment_options' in local_var_params:
body_params = local_var_params['upload_attachment_options']
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments', 'POST',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='list[str]', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def upload_attachment_bytes(self, **kwargs): # noqa: E501
"""Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_bytes(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str content_type:
:param str content_type2: Optional contentType for file. For instance `application/pdf`
:param str content_id: Optional content ID (CID) to save upload with
:param str filename: Optional filename to save upload with
:param str filename2:
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: list[str]
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.upload_attachment_bytes_with_http_info(**kwargs) # noqa: E501
def upload_attachment_bytes_with_http_info(self, **kwargs): # noqa: E501
"""Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_bytes_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str content_type:
:param str content_type2: Optional contentType for file. For instance `application/pdf`
:param str content_id: Optional content ID (CID) to save upload with
:param str filename: Optional filename to save upload with
:param str filename2:
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(list[str], status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'content_type',
'content_type2',
'content_id',
'filename',
'filename2'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method upload_attachment_bytes" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
if 'content_type2' in local_var_params and local_var_params['content_type2'] is not None: # noqa: E501
query_params.append(('contentType', local_var_params['content_type2'])) # noqa: E501
if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501
query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501
if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501
query_params.append(('filename', local_var_params['filename'])) # noqa: E501
header_params = {}
if 'content_type' in local_var_params:
header_params['contentType'] = local_var_params['content_type'] # noqa: E501
if 'filename2' in local_var_params:
header_params['filename'] = local_var_params['filename2'] # noqa: E501
form_params = []
local_var_files = {}
body_params = None
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/bytes', 'POST',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='list[str]', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
def upload_multipart_form(self, **kwargs): # noqa: E501
"""Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_multipart_form(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str content_id: Optional content ID of attachment
:param str content_type: Optional content type of attachment
:param str filename: Optional name of file
:param str x_filename: Optional content type header of attachment
:param InlineObject inline_object:
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: list[str]
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
return self.upload_multipart_form_with_http_info(**kwargs) # noqa: E501
def upload_multipart_form_with_http_info(self, **kwargs): # noqa: E501
"""Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_multipart_form_with_http_info(async_req=True)
>>> result = thread.get()
:param async_req bool: execute request asynchronously
:param str content_id: Optional content ID of attachment
:param str content_type: Optional content type of attachment
:param str filename: Optional name of file
:param str x_filename: Optional content type header of attachment
:param InlineObject inline_object:
:param _return_http_data_only: response data without head status code
and headers
:param _preload_content: if False, the urllib3.HTTPResponse object will
be returned without reading/decoding response
data. Default is True.
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
timeout. It can also be a pair (tuple) of
(connection, read) timeouts.
:return: tuple(list[str], status_code(int), headers(HTTPHeaderDict))
If the method is called asynchronously,
returns the request thread.
"""
local_var_params = locals()
all_params = [
'content_id',
'content_type',
'filename',
'x_filename',
'inline_object'
]
all_params.extend(
[
'async_req',
'_return_http_data_only',
'_preload_content',
'_request_timeout'
]
)
for key, val in six.iteritems(local_var_params['kwargs']):
if key not in all_params:
raise ApiTypeError(
"Got an unexpected keyword argument '%s'"
" to method upload_multipart_form" % key
)
local_var_params[key] = val
del local_var_params['kwargs']
collection_formats = {}
path_params = {}
query_params = []
if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501
query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501
if 'content_type' in local_var_params and local_var_params['content_type'] is not None: # noqa: E501
query_params.append(('contentType', local_var_params['content_type'])) # noqa: E501
if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501
query_params.append(('filename', local_var_params['filename'])) # noqa: E501
if 'x_filename' in local_var_params and local_var_params['x_filename'] is not None: # noqa: E501
query_params.append(('x-filename', local_var_params['x_filename'])) # noqa: E501
header_params = {}
form_params = []
local_var_files = {}
body_params = None
if 'inline_object' in local_var_params:
body_params = local_var_params['inline_object']
# HTTP header `Accept`
header_params['Accept'] = self.api_client.select_header_accept(
['*/*']) # noqa: E501
# HTTP header `Content-Type`
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
['application/json']) # noqa: E501
# Authentication setting
auth_settings = ['API_KEY'] # noqa: E501
return self.api_client.call_api(
'/attachments/multipart', 'POST',
path_params,
query_params,
header_params,
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='list[str]', # noqa: E501
auth_settings=auth_settings,
async_req=local_var_params.get('async_req'),
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
_preload_content=local_var_params.get('_preload_content', True),
_request_timeout=local_var_params.get('_request_timeout'),
collection_formats=collection_formats)
Classes
class AttachmentControllerApi (api_client=None)
-
NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech
Do not edit the class manually.
Expand source code
class AttachmentControllerApi(object): """NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech Do not edit the class manually. """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def delete_all_attachments(self, **kwargs): # noqa: E501 """Delete all attachments # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_all_attachments(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.delete_all_attachments_with_http_info(**kwargs) # noqa: E501 def delete_all_attachments_with_http_info(self, **kwargs): # noqa: E501 """Delete all attachments # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_all_attachments_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method delete_all_attachments" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def delete_attachment(self, attachment_id, **kwargs): # noqa: E501 """Delete an attachment # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_attachment(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.delete_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501 def delete_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Delete an attachment # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method delete_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `delete_attachment`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def download_attachment_as_base64_encoded(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501 Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_base64_encoded(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: DownloadAttachmentDto If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.download_attachment_as_base64_encoded_with_http_info(attachment_id, **kwargs) # noqa: E501 def download_attachment_as_base64_encoded_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501 Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_base64_encoded_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(DownloadAttachmentDto, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method download_attachment_as_base64_encoded" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_base64_encoded`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/base64', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='DownloadAttachmentDto', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def download_attachment_as_bytes(self, attachment_id, **kwargs): # noqa: E501 """Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501 Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_bytes(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: str If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.download_attachment_as_bytes_with_http_info(attachment_id, **kwargs) # noqa: E501 def download_attachment_as_bytes_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501 Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_bytes_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(str, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method download_attachment_as_bytes" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_bytes`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/octet-stream']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/bytes', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='str', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def get_attachment(self, attachment_id, **kwargs): # noqa: E501 """Get an attachment entity # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentEntity If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501 def get_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get an attachment entity # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AttachmentEntity', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def get_attachment_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment metadata information # noqa: E501 Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentMetaData If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachment_info_with_http_info(attachment_id, **kwargs) # noqa: E501 def get_attachment_info_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment metadata information # noqa: E501 Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_info_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentMetaData, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachment_info" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment_info`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/metadata', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AttachmentMetaData', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def get_attachments(self, **kwargs): # noqa: E501 """Get email attachments # noqa: E501 Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachments(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PageAttachmentEntity If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachments_with_http_info(**kwargs) # noqa: E501 def get_attachments_with_http_info(self, **kwargs): # noqa: E501 """Get email attachments # noqa: E501 Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachments_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PageAttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'page', 'size', 'sort', 'file_name_filter', 'since', 'before', 'inbox_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachments" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'page' in local_var_params and local_var_params['page'] is not None: # noqa: E501 query_params.append(('page', local_var_params['page'])) # noqa: E501 if 'size' in local_var_params and local_var_params['size'] is not None: # noqa: E501 query_params.append(('size', local_var_params['size'])) # noqa: E501 if 'sort' in local_var_params and local_var_params['sort'] is not None: # noqa: E501 query_params.append(('sort', local_var_params['sort'])) # noqa: E501 if 'file_name_filter' in local_var_params and local_var_params['file_name_filter'] is not None: # noqa: E501 query_params.append(('fileNameFilter', local_var_params['file_name_filter'])) # noqa: E501 if 'since' in local_var_params and local_var_params['since'] is not None: # noqa: E501 query_params.append(('since', local_var_params['since'])) # noqa: E501 if 'before' in local_var_params and local_var_params['before'] is not None: # noqa: E501 query_params.append(('before', local_var_params['before'])) # noqa: E501 if 'inbox_id' in local_var_params and local_var_params['inbox_id'] is not None: # noqa: E501 query_params.append(('inboxId', local_var_params['inbox_id'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PageAttachmentEntity', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def upload_attachment(self, upload_attachment_options, **kwargs): # noqa: E501 """Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment(upload_attachment_options, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_attachment_with_http_info(upload_attachment_options, **kwargs) # noqa: E501 def upload_attachment_with_http_info(self, upload_attachment_options, **kwargs): # noqa: E501 """Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_with_http_info(upload_attachment_options, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'upload_attachment_options' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'upload_attachment_options' is set if self.api_client.client_side_validation and ('upload_attachment_options' not in local_var_params or # noqa: E501 local_var_params['upload_attachment_options'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `upload_attachment_options` when calling `upload_attachment`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None if 'upload_attachment_options' in local_var_params: body_params = local_var_params['upload_attachment_options'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def upload_attachment_bytes(self, **kwargs): # noqa: E501 """Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_bytes(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance `application/pdf` :param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_attachment_bytes_with_http_info(**kwargs) # noqa: E501 def upload_attachment_bytes_with_http_info(self, **kwargs): # noqa: E501 """Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_bytes_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance `application/pdf` :param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'content_type', 'content_type2', 'content_id', 'filename', 'filename2' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_attachment_bytes" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'content_type2' in local_var_params and local_var_params['content_type2'] is not None: # noqa: E501 query_params.append(('contentType', local_var_params['content_type2'])) # noqa: E501 if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501 query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501 if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501 query_params.append(('filename', local_var_params['filename'])) # noqa: E501 header_params = {} if 'content_type' in local_var_params: header_params['contentType'] = local_var_params['content_type'] # noqa: E501 if 'filename2' in local_var_params: header_params['filename'] = local_var_params['filename2'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/bytes', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def upload_multipart_form(self, **kwargs): # noqa: E501 """Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_multipart_form(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_multipart_form_with_http_info(**kwargs) # noqa: E501 def upload_multipart_form_with_http_info(self, **kwargs): # noqa: E501 """Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_multipart_form_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'content_id', 'content_type', 'filename', 'x_filename', 'inline_object' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_multipart_form" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501 query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501 if 'content_type' in local_var_params and local_var_params['content_type'] is not None: # noqa: E501 query_params.append(('contentType', local_var_params['content_type'])) # noqa: E501 if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501 query_params.append(('filename', local_var_params['filename'])) # noqa: E501 if 'x_filename' in local_var_params and local_var_params['x_filename'] is not None: # noqa: E501 query_params.append(('x-filename', local_var_params['x_filename'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None if 'inline_object' in local_var_params: body_params = local_var_params['inline_object'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/multipart', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
Methods
def delete_all_attachments(self, **kwargs)
-
Delete all attachments # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_all_attachments(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread.
Expand source code
def delete_all_attachments(self, **kwargs): # noqa: E501 """Delete all attachments # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_all_attachments(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.delete_all_attachments_with_http_info(**kwargs) # noqa: E501
def delete_all_attachments_with_http_info(self, **kwargs)
-
Delete all attachments # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_all_attachments_with_http_info(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread.
Expand source code
def delete_all_attachments_with_http_info(self, **kwargs): # noqa: E501 """Delete all attachments # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_all_attachments_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method delete_all_attachments" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def delete_attachment(self, attachment_id, **kwargs)
-
Delete an attachment # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_attachment(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread.
Expand source code
def delete_attachment(self, attachment_id, **kwargs): # noqa: E501 """Delete an attachment # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_attachment(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.delete_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501
def delete_attachment_with_http_info(self, attachment_id, **kwargs)
-
Delete an attachment # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread.
Expand source code
def delete_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Delete an attachment # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: None If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method delete_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `delete_attachment`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type=None, # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def download_attachment_as_base64_encoded(self, attachment_id, **kwargs)
-
Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501
Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the
downloadAttachment
method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.download_attachment_as_base64_encoded(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: DownloadAttachmentDto If the method is called asynchronously, returns the request thread.
Expand source code
def download_attachment_as_base64_encoded(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501 Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_base64_encoded(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: DownloadAttachmentDto If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.download_attachment_as_base64_encoded_with_http_info(attachment_id, **kwargs) # noqa: E501
def download_attachment_as_base64_encoded_with_http_info(self, attachment_id, **kwargs)
-
Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501
Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the
downloadAttachment
method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.download_attachment_as_base64_encoded_with_http_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(DownloadAttachmentDto, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def download_attachment_as_base64_encoded_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment as base64 encoded string as alternative to binary responses. To read the content decode the Base64 encoded contents. # noqa: E501 Returns the specified attachment for a given email as a base 64 encoded string. The response type is application/json. This method is similar to the `downloadAttachment` method but allows some clients to get around issues with binary responses. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_base64_encoded_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(DownloadAttachmentDto, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method download_attachment_as_base64_encoded" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_base64_encoded`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/base64', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='DownloadAttachmentDto', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def download_attachment_as_bytes(self, attachment_id, **kwargs)
-
Download attachments. Get email attachment bytes. If you have trouble with byte responses try the
downloadAttachmentBase64
response endpoints. # noqa: E501Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_bytes(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: str If the method is called asynchronously, returns the request thread.
Expand source code
def download_attachment_as_bytes(self, attachment_id, **kwargs): # noqa: E501 """Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501 Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_bytes(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: str If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.download_attachment_as_bytes_with_http_info(attachment_id, **kwargs) # noqa: E501
def download_attachment_as_bytes_with_http_info(self, attachment_id, **kwargs)
-
Download attachments. Get email attachment bytes. If you have trouble with byte responses try the
downloadAttachmentBase64
response endpoints. # noqa: E501Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.download_attachment_as_bytes_with_http_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(str, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def download_attachment_as_bytes_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Download attachments. Get email attachment bytes. If you have trouble with byte responses try the `downloadAttachmentBase64` response endpoints. # noqa: E501 Returns the specified attachment for a given email as a stream / array of bytes. You can find attachment ids in email responses endpoint responses. The response type is application/octet-stream. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.download_attachment_as_bytes_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(str, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method download_attachment_as_bytes" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `download_attachment_as_bytes`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/octet-stream']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/bytes', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='str', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def get_attachment(self, attachment_id, **kwargs)
-
Get an attachment entity # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentEntity If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachment(self, attachment_id, **kwargs): # noqa: E501 """Get an attachment entity # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentEntity If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachment_with_http_info(attachment_id, **kwargs) # noqa: E501
def get_attachment_info(self, attachment_id, **kwargs)
-
Get email attachment metadata information # noqa: E501
Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties
name
andcontent-type
andcontent-length
in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.get_attachment_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentMetaData If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachment_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment metadata information # noqa: E501 Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AttachmentMetaData If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachment_info_with_http_info(attachment_id, **kwargs) # noqa: E501
def get_attachment_info_with_http_info(self, attachment_id, **kwargs)
-
Get email attachment metadata information # noqa: E501
Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties
name
andcontent-type
andcontent-length
in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.get_attachment_info_with_http_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentMetaData, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachment_info_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get email attachment metadata information # noqa: E501 Returns the metadata for an attachment. It is saved separately to the content of the attachment. Contains properties `name` and `content-type` and `content-length` in bytes for a given attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_info_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentMetaData, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachment_info" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment_info`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}/metadata', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AttachmentMetaData', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def get_attachment_with_http_info(self, attachment_id, **kwargs)
-
Get an attachment entity # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.get_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachment_with_http_info(self, attachment_id, **kwargs): # noqa: E501 """Get an attachment entity # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachment_with_http_info(attachment_id, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str attachment_id: ID of attachment (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'attachment_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'attachment_id' is set if self.api_client.client_side_validation and ('attachment_id' not in local_var_params or # noqa: E501 local_var_params['attachment_id'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `attachment_id` when calling `get_attachment`") # noqa: E501 collection_formats = {} path_params = {} if 'attachment_id' in local_var_params: path_params['attachmentId'] = local_var_params['attachment_id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/{attachmentId}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AttachmentEntity', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def get_attachments(self, **kwargs)
-
Get email attachments # noqa: E501
Get all attachments in paginated response. Each entity contains meta data for the attachment such as
name
andcontent-type
. Use theattachmentId
and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.get_attachments(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PageAttachmentEntity If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachments(self, **kwargs): # noqa: E501 """Get email attachments # noqa: E501 Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachments(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PageAttachmentEntity If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.get_attachments_with_http_info(**kwargs) # noqa: E501
def get_attachments_with_http_info(self, **kwargs)
-
Get email attachments # noqa: E501
Get all attachments in paginated response. Each entity contains meta data for the attachment such as
name
andcontent-type
. Use theattachmentId
and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True>>> thread = api.get_attachments_with_http_info(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PageAttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def get_attachments_with_http_info(self, **kwargs): # noqa: E501 """Get email attachments # noqa: E501 Get all attachments in paginated response. Each entity contains meta data for the attachment such as `name` and `content-type`. Use the `attachmentId` and the download endpoints to get the file contents. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_attachments_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int page: Optional page index for list pagination :param int size: Optional page size for list pagination :param str sort: Optional createdAt sort direction ASC or DESC :param str file_name_filter: Optional file name and content type search filter :param datetime since: Filter by created at after the given timestamp :param datetime before: Filter by created at before the given timestamp :param str inbox_id: Optional inboxId to filter attachments by :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PageAttachmentEntity, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'page', 'size', 'sort', 'file_name_filter', 'since', 'before', 'inbox_id' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method get_attachments" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'page' in local_var_params and local_var_params['page'] is not None: # noqa: E501 query_params.append(('page', local_var_params['page'])) # noqa: E501 if 'size' in local_var_params and local_var_params['size'] is not None: # noqa: E501 query_params.append(('size', local_var_params['size'])) # noqa: E501 if 'sort' in local_var_params and local_var_params['sort'] is not None: # noqa: E501 query_params.append(('sort', local_var_params['sort'])) # noqa: E501 if 'file_name_filter' in local_var_params and local_var_params['file_name_filter'] is not None: # noqa: E501 query_params.append(('fileNameFilter', local_var_params['file_name_filter'])) # noqa: E501 if 'since' in local_var_params and local_var_params['since'] is not None: # noqa: E501 query_params.append(('since', local_var_params['since'])) # noqa: E501 if 'before' in local_var_params and local_var_params['before'] is not None: # noqa: E501 query_params.append(('before', local_var_params['before'])) # noqa: E501 if 'inbox_id' in local_var_params and local_var_params['inbox_id'] is not None: # noqa: E501 query_params.append(('inboxId', local_var_params['inbox_id'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PageAttachmentEntity', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def upload_attachment(self, upload_attachment_options, **kwargs)
-
Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment(upload_attachment_options, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread.
Expand source code
def upload_attachment(self, upload_attachment_options, **kwargs): # noqa: E501 """Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment(upload_attachment_options, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_attachment_with_http_info(upload_attachment_options, **kwargs) # noqa: E501
def upload_attachment_bytes(self, **kwargs)
-
Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_bytes(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance
application/pdf
:param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread.Expand source code
def upload_attachment_bytes(self, **kwargs): # noqa: E501 """Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_bytes(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance `application/pdf` :param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_attachment_bytes_with_http_info(**kwargs) # noqa: E501
def upload_attachment_bytes_with_http_info(self, **kwargs)
-
Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_bytes_with_http_info(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance
application/pdf
:param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.Expand source code
def upload_attachment_bytes_with_http_info(self, **kwargs): # noqa: E501 """Upload an attachment for sending using file byte stream input octet stream. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_bytes_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_type: :param str content_type2: Optional contentType for file. For instance `application/pdf` :param str content_id: Optional content ID (CID) to save upload with :param str filename: Optional filename to save upload with :param str filename2: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'content_type', 'content_type2', 'content_id', 'filename', 'filename2' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_attachment_bytes" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'content_type2' in local_var_params and local_var_params['content_type2'] is not None: # noqa: E501 query_params.append(('contentType', local_var_params['content_type2'])) # noqa: E501 if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501 query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501 if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501 query_params.append(('filename', local_var_params['filename'])) # noqa: E501 header_params = {} if 'content_type' in local_var_params: header_params['contentType'] = local_var_params['content_type'] # noqa: E501 if 'filename2' in local_var_params: header_params['filename'] = local_var_params['filename2'] # noqa: E501 form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/bytes', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def upload_attachment_with_http_info(self, upload_attachment_options, **kwargs)
-
Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_attachment_with_http_info(upload_attachment_options, async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def upload_attachment_with_http_info(self, upload_attachment_options, **kwargs): # noqa: E501 """Upload an attachment for sending using base64 file encoding. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_attachment_with_http_info(upload_attachment_options, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param UploadAttachmentOptions upload_attachment_options: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'upload_attachment_options' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_attachment" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'upload_attachment_options' is set if self.api_client.client_side_validation and ('upload_attachment_options' not in local_var_params or # noqa: E501 local_var_params['upload_attachment_options'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `upload_attachment_options` when calling `upload_attachment`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None if 'upload_attachment_options' in local_var_params: body_params = local_var_params['upload_attachment_options'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)
def upload_multipart_form(self, **kwargs)
-
Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_multipart_form(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread.
Expand source code
def upload_multipart_form(self, **kwargs): # noqa: E501 """Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_multipart_form(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: list[str] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.upload_multipart_form_with_http_info(**kwargs) # noqa: E501
def upload_multipart_form_with_http_info(self, **kwargs)
-
Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501
This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True
>>> thread = api.upload_multipart_form_with_http_info(async_req=True) >>> result = thread.get()
:param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread.
Expand source code
def upload_multipart_form_with_http_info(self, **kwargs): # noqa: E501 """Upload an attachment for sending using a Multipart Form request. Returns an array whose first element is the ID of the uploaded attachment. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.upload_multipart_form_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str content_id: Optional content ID of attachment :param str content_type: Optional content type of attachment :param str filename: Optional name of file :param str x_filename: Optional content type header of attachment :param InlineObject inline_object: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(list[str], status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'content_id', 'content_type', 'filename', 'x_filename', 'inline_object' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method upload_multipart_form" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'content_id' in local_var_params and local_var_params['content_id'] is not None: # noqa: E501 query_params.append(('contentId', local_var_params['content_id'])) # noqa: E501 if 'content_type' in local_var_params and local_var_params['content_type'] is not None: # noqa: E501 query_params.append(('contentType', local_var_params['content_type'])) # noqa: E501 if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501 query_params.append(('filename', local_var_params['filename'])) # noqa: E501 if 'x_filename' in local_var_params and local_var_params['x_filename'] is not None: # noqa: E501 query_params.append(('x-filename', local_var_params['x_filename'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None if 'inline_object' in local_var_params: body_params = local_var_params['inline_object'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['*/*']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['API_KEY'] # noqa: E501 return self.api_client.call_api( '/attachments/multipart', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[str]', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)