POST | /integrations |
---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EntityInfo:
# @ApiMember(Description="The ID of the object")
id: Optional[str] = None
"""
The ID of the object
"""
# @ApiMember(Description="The date the object was created")
date_created: Optional[str] = None
"""
The date the object was created
"""
# @ApiMember(Description="The date the object was last modified")
date_last_modified: Optional[str] = None
"""
The date the object was last modified
"""
# @ApiMember(Description="The user that created this object")
created_by: Optional[str] = None
"""
The user that created this object
"""
# @ApiMember(Description="The user that last modified this object")
last_modified_by: Optional[str] = None
"""
The user that last modified this object
"""
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CustomerBreadcrumb:
id: Optional[str] = None
name: Optional[str] = None
class IntegrationTypes(str, Enum):
HOSTED_SUITE = 'HostedSuite'
OFFICE_RND = 'OfficeRnd'
ZOHO = 'Zoho'
class IntegrationStatuses(str, Enum):
NOT_CONFIGURED = 'NotConfigured'
ERROR = 'Error'
OK = 'OK'
class ValueTypes(str, Enum):
NOT_SPECIFIED = 'NotSpecified'
STRING = 'String'
BOOLEAN = 'Boolean'
NUMBER = 'Number'
LIST = 'List'
STRUCT = 'Struct'
TRANSITION = 'Transition'
CUSTOM = 'Custom'
DATE = 'Date'
AUDIO_FILE = 'AudioFile'
TIME_ZONE_ID = 'TimeZoneId'
PHONE_NUMBER = 'PhoneNumber'
USER = 'User'
ENDPOINT = 'Endpoint'
TIME = 'Time'
FILE = 'File'
FAX_NUMBER = 'FaxNumber'
EMAIL_ACCOUNT = 'EmailAccount'
CUSTOMER = 'Customer'
FLOW = 'Flow'
TEAM = 'Team'
FLOW_REFERENCE = 'FlowReference'
INTEGRATION = 'Integration'
ASSISTANT = 'Assistant'
class UIHints(str, Enum):
NONE = 'None'
LARGE_TEXT = 'LargeText'
INLINE_FORM = 'InlineForm'
PASSWORD = 'Password'
INLINE_STRUCT = 'InlineStruct'
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Struct(Dict[str,Value]):
pass
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Value:
bool_value: Optional[bool] = None
string_value: Optional[str] = None
number_value: Optional[float] = None
list_value: Optional[List[Struct]] = None
struct_value: Optional[Struct] = None
class DataFieldUniqueness(str, Enum):
NOT_UNIQUE = 'NotUnique'
UNIQUE = 'Unique'
UNIQUE_TO_CUSTOMER = 'UniqueToCustomer'
class UserDataFieldModes(str, Enum):
HIDDEN = 'Hidden'
READ_ONLY = 'ReadOnly'
READ_WRITE = 'ReadWrite'
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DataField:
id: Optional[str] = None
name: Optional[str] = None
type: Optional[ValueTypes] = None
ui_hint: Optional[UIHints] = None
ui_tab: Optional[str] = None
is_async: bool = False
disable_binding: bool = False
struct_type: Optional[DataType] = None
list_type: Optional[DataType] = None
description: Optional[str] = None
possible_values: Optional[List[str]] = None
is_output: bool = False
custom_field_values_url: Optional[str] = None
default_value: Optional[Value] = None
transition_name_format: Optional[str] = None
uniqueness: Optional[DataFieldUniqueness] = None
voice_only: bool = False
conditional_visibility_field: Optional[str] = None
conditional_visibility_value: Optional[str] = None
no_eval_template: bool = False
user_mode: Optional[UserDataFieldModes] = None
any_value_type: bool = False
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DataType:
type_name: Optional[str] = None
fields: Optional[List[DataField]] = None
class IntegrationFeatures(str, Enum):
CRM_SYNC = 'CrmSync'
O_AUTH2 = 'OAuth2'
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class IntegrationInfo(EntityInfo):
# @ApiMember(Description="The ID of the account associated with this integration")
account_id: Optional[str] = None
"""
The ID of the account associated with this integration
"""
# @ApiMember(Description="The ID of the customer this integration is associated with")
customer_id: Optional[str] = None
"""
The ID of the customer this integration is associated with
"""
# @ApiMember(Description="The name of the customer this integration is associated with")
customer_name: Optional[str] = None
"""
The name of the customer this integration is associated with
"""
# @ApiMember(Description="The date the integration was sync'd last")
date_last_sync: Optional[str] = None
"""
The date the integration was sync'd last
"""
# @ApiMember(Description="The breadcrumb to the customer for this integration")
customer_breadcrumb: Optional[List[CustomerBreadcrumb]] = None
"""
The breadcrumb to the customer for this integration
"""
# @ApiMember(Description="The name of the integration (e.g. HostedSuite Dallas)")
name: Optional[str] = None
"""
The name of the integration (e.g. HostedSuite Dallas)
"""
# @ApiMember(Description="Automatically create new customers / users when sync'ing with CRM?")
automatically_create_customers: bool = False
"""
Automatically create new customers / users when sync'ing with CRM?
"""
# @ApiMember(Description="The type of integration")
type: Optional[IntegrationTypes] = None
"""
The type of integration
"""
# @ApiMember(Description="The status of the integration")
status: Optional[IntegrationStatuses] = None
"""
The status of the integration
"""
# @ApiMember(Description="The status of the integration")
status_message: Optional[str] = None
"""
The status of the integration
"""
# @ApiMember(Description="The settings type for this integration")
settings_data_type: Optional[DataType] = None
"""
The settings type for this integration
"""
# @ApiMember(Description="The settings for this integration")
settings: Optional[Struct] = None
"""
The settings for this integration
"""
# @ApiMember(Description="The features supported by this integration")
features: Optional[List[IntegrationFeatures]] = None
"""
The features supported by this integration
"""
# @ApiMember(Description="Is this integration authorized (OAuth)?")
is_authorized: bool = False
"""
Is this integration authorized (OAuth)?
"""
# @Api(Description="Creates a new integration")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class NewIntegration(IPost):
"""
Creates a new integration
"""
# @ApiMember(Description="The account ID to associate this integration with")
account_id: Optional[str] = None
"""
The account ID to associate this integration with
"""
# @ApiMember(Description="The type of integration")
type: Optional[IntegrationTypes] = None
"""
The type of integration
"""
# @ApiMember(Description="The name of the integration")
name: Optional[str] = None
"""
The name of the integration
"""
# @ApiMember(Description="The parent customer for this integration")
customer_id: Optional[str] = None
"""
The parent customer for this integration
"""
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /integrations HTTP/1.1
Host: team.evovoice.io
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<NewIntegration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Integrations">
<AccountId>String</AccountId>
<CustomerId>String</CustomerId>
<Name>String</Name>
<Type>HostedSuite</Type>
</NewIntegration>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <IntegrationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api.Integrations"> <CreatedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</CreatedBy> <DateCreated xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateCreated> <DateLastModified xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</DateLastModified> <Id xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</Id> <LastModifiedBy xmlns="http://schemas.datacontract.org/2004/07/Voice.Api">String</LastModifiedBy> <AccountId>String</AccountId> <AutomaticallyCreateCustomers>false</AutomaticallyCreateCustomers> <CustomerBreadcrumb xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers"> <d2p1:CustomerBreadcrumb> <d2p1:Id>String</d2p1:Id> <d2p1:Name>String</d2p1:Name> </d2p1:CustomerBreadcrumb> </CustomerBreadcrumb> <CustomerId>String</CustomerId> <CustomerName>String</CustomerName> <DateLastSync>String</DateLastSync> <Features> <IntegrationFeatures>CrmSync</IntegrationFeatures> </Features> <IsAuthorized>false</IsAuthorized> <Name>String</Name> <Settings xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" /> <SettingsDataType xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Flows.Data" i:nil="true" /> <Status>NotConfigured</Status> <StatusMessage>String</StatusMessage> <Type>HostedSuite</Type> </IntegrationInfo>