Zendesk is no longer automatically updating this repository based on changes to the Sunshine Conversations OpenAPI specification. We encourage users to refer to the Sunshine Conversations OpenAPI specification and our Developer Documentation for details on working with the Sunshine Conversations API.
SunshineConversationsClient - JavaScript client for sunshine-conversations-client This SDK has been generated by the OpenAPI Generator project, using the Sunshine Conversations OpenAPI specification:
- API version: 17.0.0
- Package version: 17.0.0
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
For Node.js
To publish the library as a npm, please follow the procedure in "Publishing npm packages".
Then install it via:
npm install sunshine-conversations-client --saveTo use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:
npm install
npm buildNext, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:
npm linkFinally, switch to the directory you want to use your sunshine-conversations-client from, and run:
npm link /path/to/<JAVASCRIPT_CLIENT_DIR>You should now be able to require('sunshine-conversations-client') in javascript files from the directory you ran the last command above from.
If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:
npm install GIT_USER_ID/GIT_REPO_ID --saveThe library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):
browserify main.js > bundle.jsThen include bundle.js in the HTML pages.
Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:
module: {
rules: [
{
parser: {
amd: false
}
}
]
}Sunshine Conversations is available in the following regions. The US region will be used by default. To target any other region, specify the region's API host in defaultClient.basePath. For example:
var defaultClient = SunshineConversationsClient.ApiClient.instance;
defaultClient.basePath = "https://{subdomain}.zendesk.com/sc";Please follow the installation instructions and execute the following JS code:
var SunshineConversationsClient = require('sunshine-conversations-client');
var defaultClient = SunshineConversationsClient.ApiClient.instance;
// Configure HTTP basic authorization: basicAuth
var basicAuth = defaultClient.authentications['basicAuth'];
basicAuth.username = 'YOUR USERNAME'
basicAuth.password = 'YOUR PASSWORD'
// Configure Bearer (JWT) access token for authorization: bearerAuth
var bearerAuth = defaultClient.authentications['bearerAuth'];
bearerAuth.accessToken = "YOUR ACCESS TOKEN"
var api = new SunshineConversationsClient.ActivitiesApi()
var appId = "5d8cff3cd55b040010928b5b"; // {String} Identifies the app.
var conversationId = "029c31f25a21b47effd7be90"; // {String} Identifies the conversation.
var activityPost = {"author":{"type":"user","userId":"5963c0d619a30a2e00de36b8"},"type":"conversation:read"}; // {ActivityPost}
api.postActivity(appId, conversationId, activityPost).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
All URIs are relative to https://api.smooch.io
| Class | Method | HTTP request | Description |
|---|---|---|---|
| SunshineConversationsClient.ActivitiesApi | postActivity | POST /v2/apps/{appId}/conversations/{conversationId}/activity | Post Activity |
| SunshineConversationsClient.AppKeysApi | createAppKey | POST /v2/apps/{appId}/keys | Create App Key |
| SunshineConversationsClient.AppKeysApi | deleteAppKey | DELETE /v2/apps/{appId}/keys/{keyId} | Delete App Key |
| SunshineConversationsClient.AppKeysApi | getAppKey | GET /v2/apps/{appId}/keys/{keyId} | Get App Key |
| SunshineConversationsClient.AppKeysApi | listAppKeys | GET /v2/apps/{appId}/keys | List App Keys |
| SunshineConversationsClient.AppsApi | createApp | POST /v2/apps | Create App |
| SunshineConversationsClient.AppsApi | deleteApp | DELETE /v2/apps/{appId} | Delete App |
| SunshineConversationsClient.AppsApi | getApp | GET /v2/apps/{appId} | Get App |
| SunshineConversationsClient.AppsApi | listApps | GET /v2/apps | List Apps |
| SunshineConversationsClient.AppsApi | updateApp | PATCH /v2/apps/{appId} | Update App |
| SunshineConversationsClient.AttachmentsApi | deleteAttachment | POST /v2/apps/{appId}/attachments/remove | Delete Attachment |
| SunshineConversationsClient.AttachmentsApi | uploadAttachment | POST /v2/apps/{appId}/attachments | Upload Attachment |
| SunshineConversationsClient.ClientsApi | createClient | POST /v2/apps/{appId}/users/{userIdOrExternalId}/clients | Create Client |
| SunshineConversationsClient.ClientsApi | listClients | GET /v2/apps/{appId}/users/{userIdOrExternalId}/clients | List Clients |
| SunshineConversationsClient.ClientsApi | removeClient | DELETE /v2/apps/{appId}/users/{userIdOrExternalId}/clients/{clientId} | Remove Client |
| SunshineConversationsClient.ConversationsApi | createConversation | POST /v2/apps/{appId}/conversations | Create Conversation |
| SunshineConversationsClient.ConversationsApi | deleteConversation | DELETE /v2/apps/{appId}/conversations/{conversationId} | Delete Conversation |
| SunshineConversationsClient.ConversationsApi | downloadMessageRef | POST /v2/apps/{appId}/conversations/{conversationId}/download | Download Message Ref |
| SunshineConversationsClient.ConversationsApi | getConversation | GET /v2/apps/{appId}/conversations/{conversationId} | Get Conversation |
| SunshineConversationsClient.ConversationsApi | listConversations | GET /v2/apps/{appId}/conversations | List Conversations |
| SunshineConversationsClient.ConversationsApi | postConversionEvents | POST /v2/apps/{appId}/conversations/{conversationId}/conversionEvents | Post Conversion Events |
| SunshineConversationsClient.ConversationsApi | updateConversation | PATCH /v2/apps/{appId}/conversations/{conversationId} | Update Conversation |
| SunshineConversationsClient.CustomIntegrationApiKeysApi | createCustomIntegrationKey | POST /v2/apps/{appId}/integrations/{integrationId}/keys | Create Integration Key |
| SunshineConversationsClient.CustomIntegrationApiKeysApi | deleteCustomIntegrationKey | DELETE /v2/apps/{appId}/integrations/{integrationId}/keys/{keyId} | Delete Integration Key |
| SunshineConversationsClient.CustomIntegrationApiKeysApi | getCustomIntegrationKey | GET /v2/apps/{appId}/integrations/{integrationId}/keys/{keyId} | Get Integration Key |
| SunshineConversationsClient.CustomIntegrationApiKeysApi | listCustomIntegrationKeys | GET /v2/apps/{appId}/integrations/{integrationId}/keys | List Integration Keys |
| SunshineConversationsClient.DevicesApi | getDevice | GET /v2/apps/{appId}/users/{userIdOrExternalId}/devices/{deviceId} | Get Device |
| SunshineConversationsClient.DevicesApi | listDevices | GET /v2/apps/{appId}/users/{userIdOrExternalId}/devices | List Devices |
| SunshineConversationsClient.IntegrationsApi | createIntegration | POST /v2/apps/{appId}/integrations | Create Integration |
| SunshineConversationsClient.IntegrationsApi | deleteIntegration | DELETE /v2/apps/{appId}/integrations/{integrationId} | Delete Integration |
| SunshineConversationsClient.IntegrationsApi | getIntegration | GET /v2/apps/{appId}/integrations/{integrationId} | Get Integration |
| SunshineConversationsClient.IntegrationsApi | listIntegrations | GET /v2/apps/{appId}/integrations | List Integrations |
| SunshineConversationsClient.IntegrationsApi | updateIntegration | PATCH /v2/apps/{appId}/integrations/{integrationId} | Update Integration |
| SunshineConversationsClient.MessagesApi | deleteAllMessages | DELETE /v2/apps/{appId}/conversations/{conversationId}/messages | Delete All Messages |
| SunshineConversationsClient.MessagesApi | deleteMessage | DELETE /v2/apps/{appId}/conversations/{conversationId}/messages/{messageId} | Delete Message |
| SunshineConversationsClient.MessagesApi | listMessages | GET /v2/apps/{appId}/conversations/{conversationId}/messages | List Messages |
| SunshineConversationsClient.MessagesApi | postMessage | POST /v2/apps/{appId}/conversations/{conversationId}/messages | Post Message |
| SunshineConversationsClient.OAuthEndpointsApi | authorize | GET /oauth/authorize | Authorize |
| SunshineConversationsClient.OAuthEndpointsApi | getToken | POST /oauth/token | Get Token |
| SunshineConversationsClient.OAuthEndpointsApi | getTokenInfo | GET /v2/tokenInfo | Get Token Info |
| SunshineConversationsClient.OAuthEndpointsApi | revokeAccess | DELETE /oauth/authorization | Revoke Access |
| SunshineConversationsClient.ParticipantsApi | joinConversation | POST /v2/apps/{appId}/conversations/{conversationId}/join | Join Conversation |
| SunshineConversationsClient.ParticipantsApi | leaveConversation | POST /v2/apps/{appId}/conversations/{conversationId}/leave | Leave Conversation |
| SunshineConversationsClient.ParticipantsApi | listParticipants | GET /v2/apps/{appId}/conversations/{conversationId}/participants | List Participants |
| SunshineConversationsClient.SwitchboardActionsApi | acceptControl | POST /v2/apps/{appId}/conversations/{conversationId}/acceptControl | Accept Control |
| SunshineConversationsClient.SwitchboardActionsApi | offerControl | POST /v2/apps/{appId}/conversations/{conversationId}/offerControl | Offer Control |
| SunshineConversationsClient.SwitchboardActionsApi | passControl | POST /v2/apps/{appId}/conversations/{conversationId}/passControl | Pass Control |
| SunshineConversationsClient.SwitchboardActionsApi | releaseControl | POST /v2/apps/{appId}/conversations/{conversationId}/releaseControl | Release Control |
| SunshineConversationsClient.SwitchboardIntegrationsApi | createSwitchboardIntegration | POST /v2/apps/{appId}/switchboards/{switchboardId}/switchboardIntegrations | Create Switchboard Integration |
| SunshineConversationsClient.SwitchboardIntegrationsApi | deleteSwitchboardIntegration | DELETE /v2/apps/{appId}/switchboards/{switchboardId}/switchboardIntegrations/{switchboardIntegrationId} | Delete Switchboard Integration |
| SunshineConversationsClient.SwitchboardIntegrationsApi | listSwitchboardIntegrations | GET /v2/apps/{appId}/switchboards/{switchboardId}/switchboardIntegrations | List Switchboard Integrations |
| SunshineConversationsClient.SwitchboardIntegrationsApi | updateSwitchboardIntegration | PATCH /v2/apps/{appId}/switchboards/{switchboardId}/switchboardIntegrations/{switchboardIntegrationId} | Update Switchboard Integration |
| SunshineConversationsClient.SwitchboardsApi | createSwitchboard | POST /v2/apps/{appId}/switchboards | Create Switchboard |
| SunshineConversationsClient.SwitchboardsApi | deleteSwitchboard | DELETE /v2/apps/{appId}/switchboards/{switchboardId} | Delete Switchboard |
| SunshineConversationsClient.SwitchboardsApi | listSwitchboards | GET /v2/apps/{appId}/switchboards | List Switchboards |
| SunshineConversationsClient.SwitchboardsApi | updateSwitchboard | PATCH /v2/apps/{appId}/switchboards/{switchboardId} | Update Switchboard |
| SunshineConversationsClient.UsersApi | createUser | POST /v2/apps/{appId}/users | Create User |
| SunshineConversationsClient.UsersApi | deleteUser | DELETE /v2/apps/{appId}/users/{userIdOrExternalId} | Delete User |
| SunshineConversationsClient.UsersApi | deleteUserPersonalInformation | DELETE /v2/apps/{appId}/users/{userIdOrExternalId}/personalinformation | Delete User Personal Information |
| SunshineConversationsClient.UsersApi | getUser | GET /v2/apps/{appId}/users/{userIdOrExternalId} | Get User |
| SunshineConversationsClient.UsersApi | syncUser | POST /v2/apps/{appId}/users/{zendeskId}/sync | Synchronize User |
| SunshineConversationsClient.UsersApi | updateUser | PATCH /v2/apps/{appId}/users/{userIdOrExternalId} | Update User |
| SunshineConversationsClient.WebhooksApi | createWebhook | POST /v2/apps/{appId}/integrations/{integrationId}/webhooks | Create Webhook |
| SunshineConversationsClient.WebhooksApi | deleteWebhook | DELETE /v2/apps/{appId}/integrations/{integrationId}/webhooks/{webhookId} | Delete Webhook |
| SunshineConversationsClient.WebhooksApi | getWebhook | GET /v2/apps/{appId}/integrations/{integrationId}/webhooks/{webhookId} | Get Webhook |
| SunshineConversationsClient.WebhooksApi | listWebhooks | GET /v2/apps/{appId}/integrations/{integrationId}/webhooks | List Webhooks |
| SunshineConversationsClient.WebhooksApi | updateWebhook | PATCH /v2/apps/{appId}/integrations/{integrationId}/webhooks/{webhookId} | Update Webhook |
- SunshineConversationsClient.AcceptControlBody
- SunshineConversationsClient.Action
- SunshineConversationsClient.ActionSubset
- SunshineConversationsClient.Activity
- SunshineConversationsClient.ActivityMessage
- SunshineConversationsClient.ActivityPost
- SunshineConversationsClient.ActivityTypes
- SunshineConversationsClient.Android
- SunshineConversationsClient.AndroidUpdate
- SunshineConversationsClient.ApiKey
- SunshineConversationsClient.App
- SunshineConversationsClient.AppCreateBody
- SunshineConversationsClient.AppKey
- SunshineConversationsClient.AppKeyCreateBody
- SunshineConversationsClient.AppKeyListResponse
- SunshineConversationsClient.AppKeyResponse
- SunshineConversationsClient.AppListFilter
- SunshineConversationsClient.AppListResponse
- SunshineConversationsClient.AppResponse
- SunshineConversationsClient.AppSettings
- SunshineConversationsClient.AppSubSchema
- SunshineConversationsClient.AppUpdateBody
- SunshineConversationsClient.Apple
- SunshineConversationsClient.AppleMessageOverridePayload
- SunshineConversationsClient.AppleUpdate
- SunshineConversationsClient.AttachmentDeleteBody
- SunshineConversationsClient.AttachmentResponse
- SunshineConversationsClient.AttachmentSchema
- SunshineConversationsClient.Author
- SunshineConversationsClient.AuthorWebhook
- SunshineConversationsClient.Buy
- SunshineConversationsClient.Campaign
- SunshineConversationsClient.CarouselMessage
- SunshineConversationsClient.CarouselMessageDisplaySettings
- SunshineConversationsClient.Client
- SunshineConversationsClient.ClientAddEvent
- SunshineConversationsClient.ClientAddEventAllOfPayload
- SunshineConversationsClient.ClientAssociation
- SunshineConversationsClient.ClientCreate
- SunshineConversationsClient.ClientListResponse
- SunshineConversationsClient.ClientRemoveEvent
- SunshineConversationsClient.ClientRemoveEventAllOfPayload
- SunshineConversationsClient.ClientResponse
- SunshineConversationsClient.ClientType
- SunshineConversationsClient.ClientUpdateEvent
- SunshineConversationsClient.ClientUpdateEventAllOfPayload
- SunshineConversationsClient.Confirmation
- SunshineConversationsClient.Content
- SunshineConversationsClient.Conversation
- SunshineConversationsClient.ConversationCreateBody
- SunshineConversationsClient.ConversationCreateEvent
- SunshineConversationsClient.ConversationCreateEventAllOfPayload
- SunshineConversationsClient.ConversationJoinEvent
- SunshineConversationsClient.ConversationJoinEventAllOfPayload
- SunshineConversationsClient.ConversationLeaveEvent
- SunshineConversationsClient.ConversationLeaveEventAllOfPayload
- SunshineConversationsClient.ConversationListFilter
- SunshineConversationsClient.ConversationListResponse
- SunshineConversationsClient.ConversationMessageDeliveryChannelEvent
- SunshineConversationsClient.ConversationMessageDeliveryFailureEvent
- SunshineConversationsClient.ConversationMessageDeliveryFailureEventAllOfPayload
- SunshineConversationsClient.ConversationMessageDeliveryFailureEventAllOfPayloadAllOfError
- SunshineConversationsClient.ConversationMessageDeliveryPayload
- SunshineConversationsClient.ConversationMessageDeliveryPayloadDestination
- SunshineConversationsClient.ConversationMessageDeliveryPayloadExternalMessagesInner
- SunshineConversationsClient.ConversationMessageDeliveryPayloadMessage
- SunshineConversationsClient.ConversationMessageDeliveryUserEvent
- SunshineConversationsClient.ConversationMessageEvent
- SunshineConversationsClient.ConversationMessageEventAllOfPayload
- SunshineConversationsClient.ConversationPostbackEvent
- SunshineConversationsClient.ConversationPostbackEventAllOfPayload
- SunshineConversationsClient.ConversationReadEvent
- SunshineConversationsClient.ConversationReadEventAllOfPayload
- SunshineConversationsClient.ConversationReadEventAllOfPayloadActivity
- SunshineConversationsClient.ConversationReferralEvent
- SunshineConversationsClient.ConversationReferralEventAllOfPayload
- SunshineConversationsClient.ConversationRemoveEvent
- SunshineConversationsClient.ConversationRemoveEventAllOfPayload
- SunshineConversationsClient.ConversationResponse
- SunshineConversationsClient.ConversationTruncated
- SunshineConversationsClient.ConversationType
- SunshineConversationsClient.ConversationTypingEvent
- SunshineConversationsClient.ConversationTypingEventAllOfPayload
- SunshineConversationsClient.ConversationTypingEventAllOfPayloadActivity
- SunshineConversationsClient.ConversationUpdateBody
- SunshineConversationsClient.ConversionEventsBody
- SunshineConversationsClient.Custom
- SunshineConversationsClient.CustomUpdate
- SunshineConversationsClient.DefaultResponder
- SunshineConversationsClient.DefaultResponderDefaultResponder
- SunshineConversationsClient.DefaultResponderId
- SunshineConversationsClient.Destination
- SunshineConversationsClient.Device
- SunshineConversationsClient.DeviceListResponse
- SunshineConversationsClient.DeviceResponse
- SunshineConversationsClient.DownloadMessageRefBody
- SunshineConversationsClient.DownloadMessageRefBodyAllOfApple
- SunshineConversationsClient.DownloadMessageRefBodyAllOfAppleInteractiveDataRef
- SunshineConversationsClient.Error
- SunshineConversationsClient.ErrorResponse
- SunshineConversationsClient.EventSubSchema
- SunshineConversationsClient.ExtraChannelOptions
- SunshineConversationsClient.ExtraChannelOptionsMessenger
- SunshineConversationsClient.Field
- SunshineConversationsClient.FileMessage
- SunshineConversationsClient.FormMessage
- SunshineConversationsClient.FormMessageField
- SunshineConversationsClient.FormOptionsInner
- SunshineConversationsClient.FormResponseMessage
- SunshineConversationsClient.FormResponseMessageField
- SunshineConversationsClient.GetToken200Response
- SunshineConversationsClient.GetTokenRequest
- SunshineConversationsClient.Identity
- SunshineConversationsClient.ImageMessage
- SunshineConversationsClient.Instagram
- SunshineConversationsClient.InstagramConversionEventsBody
- SunshineConversationsClient.InstagramUpdate
- SunshineConversationsClient.Integration
- SunshineConversationsClient.IntegrationApiKey
- SunshineConversationsClient.IntegrationApiKeyListResponse
- SunshineConversationsClient.IntegrationApiKeyResponse
- SunshineConversationsClient.IntegrationId
- SunshineConversationsClient.IntegrationListFilter
- SunshineConversationsClient.IntegrationListResponse
- SunshineConversationsClient.IntegrationResponse
- SunshineConversationsClient.IntegrationType
- SunshineConversationsClient.IntegrationUpdate
- SunshineConversationsClient.IntegrationUpdateBase
- SunshineConversationsClient.Ios
- SunshineConversationsClient.IosUpdate
- SunshineConversationsClient.Item
- SunshineConversationsClient.Line
- SunshineConversationsClient.LineUpdate
- SunshineConversationsClient.Link
- SunshineConversationsClient.Links
- SunshineConversationsClient.ListMessage
- SunshineConversationsClient.LocationMessage
- SunshineConversationsClient.LocationMessageCoordinates
- SunshineConversationsClient.LocationMessageLocation
- SunshineConversationsClient.LocationRequest
- SunshineConversationsClient.Mailgun
- SunshineConversationsClient.MailgunUpdate
- SunshineConversationsClient.MatchCriteria
- SunshineConversationsClient.MatchCriteriaBase
- SunshineConversationsClient.MatchCriteriaMailgun
- SunshineConversationsClient.MatchCriteriaMessagebird
- SunshineConversationsClient.MatchCriteriaTwilio
- SunshineConversationsClient.MatchCriteriaWhatsapp
- SunshineConversationsClient.Message
- SunshineConversationsClient.MessageBirdUpdate
- SunshineConversationsClient.MessageListResponse
- SunshineConversationsClient.MessageOverride
- SunshineConversationsClient.MessageOverrideApple
- SunshineConversationsClient.MessageOverrideLine
- SunshineConversationsClient.MessageOverrideMessenger
- SunshineConversationsClient.MessageOverridePayload
- SunshineConversationsClient.MessageOverrideWhatsapp
- SunshineConversationsClient.MessagePost
- SunshineConversationsClient.MessagePostResponse
- SunshineConversationsClient.MessageWebhook
- SunshineConversationsClient.MessageWebhookSource
- SunshineConversationsClient.Messagebird
- SunshineConversationsClient.Messenger
- SunshineConversationsClient.MessengerConversionEventsBody
- SunshineConversationsClient.MessengerUpdate
- SunshineConversationsClient.Meta
- SunshineConversationsClient.MetaConversionEvent
- SunshineConversationsClient.MetaConversionEventPayload
- SunshineConversationsClient.OfferControlBody
- SunshineConversationsClient.Page
- SunshineConversationsClient.Participant
- SunshineConversationsClient.ParticipantJoinBody
- SunshineConversationsClient.ParticipantLeaveBody
- SunshineConversationsClient.ParticipantLeaveBodyParticipantId
- SunshineConversationsClient.ParticipantLeaveBodyUserExternalId
- SunshineConversationsClient.ParticipantLeaveBodyUserId
- SunshineConversationsClient.ParticipantListResponse
- SunshineConversationsClient.ParticipantResponse
- SunshineConversationsClient.ParticipantSubSchema
- SunshineConversationsClient.ParticipantWithUserExternalId
- SunshineConversationsClient.ParticipantWithUserId
- SunshineConversationsClient.PassControlBody
- SunshineConversationsClient.Postback
- SunshineConversationsClient.PostbackWebhook
- SunshineConversationsClient.PrechatCapture
- SunshineConversationsClient.Profile
- SunshineConversationsClient.QuotedMessage
- SunshineConversationsClient.QuotedMessageExternalMessageId
- SunshineConversationsClient.QuotedMessageMessage
- SunshineConversationsClient.Referral
- SunshineConversationsClient.ReferralDetails
- SunshineConversationsClient.ReleaseControlBody
- SunshineConversationsClient.Reply
- SunshineConversationsClient.Source
- SunshineConversationsClient.SourceWebhook
- SunshineConversationsClient.SourceWithCampaignWebhook
- SunshineConversationsClient.Status
- SunshineConversationsClient.Switchboard
- SunshineConversationsClient.SwitchboardAcceptControl
- SunshineConversationsClient.SwitchboardAcceptControlAllOfPayload
- SunshineConversationsClient.SwitchboardAcceptControlFailure
- SunshineConversationsClient.SwitchboardAcceptControlFailureAllOfPayload
- SunshineConversationsClient.SwitchboardIntegration
- SunshineConversationsClient.SwitchboardIntegrationCreateBody
- SunshineConversationsClient.SwitchboardIntegrationListResponse
- SunshineConversationsClient.SwitchboardIntegrationResponse
- SunshineConversationsClient.SwitchboardIntegrationUpdateBody
- SunshineConversationsClient.SwitchboardIntegrationWebhook
- SunshineConversationsClient.SwitchboardListResponse
- SunshineConversationsClient.SwitchboardOfferControl
- SunshineConversationsClient.SwitchboardOfferControlAllOfPayload
- SunshineConversationsClient.SwitchboardOfferControlFailure
- SunshineConversationsClient.SwitchboardPassControl
- SunshineConversationsClient.SwitchboardPassControlAllOfPayload
- SunshineConversationsClient.SwitchboardPassControlFailure
- SunshineConversationsClient.SwitchboardReleaseControl
- SunshineConversationsClient.SwitchboardReleaseControlAllOfPayload
- SunshineConversationsClient.SwitchboardResponse
- SunshineConversationsClient.SwitchboardUpdateBody
- SunshineConversationsClient.SyncUserBody
- SunshineConversationsClient.Target
- SunshineConversationsClient.Telegram
- SunshineConversationsClient.TelegramUpdate
- SunshineConversationsClient.TemplateMessage
- SunshineConversationsClient.TextMessage
- SunshineConversationsClient.TicketClosed
- SunshineConversationsClient.TransferToEmail
- SunshineConversationsClient.Twilio
- SunshineConversationsClient.TwilioUpdate
- SunshineConversationsClient.Twitter
- SunshineConversationsClient.TwitterUpdate
- SunshineConversationsClient.Unity
- SunshineConversationsClient.UnityUpdate
- SunshineConversationsClient.User
- SunshineConversationsClient.UserCreateBody
- SunshineConversationsClient.UserMergeEvent
- SunshineConversationsClient.UserMergeEventAllOfPayload
- SunshineConversationsClient.UserMergeEventAllOfPayloadMergedClients
- SunshineConversationsClient.UserMergeEventAllOfPayloadMergedConversations
- SunshineConversationsClient.UserMergeEventAllOfPayloadMergedUsers
- SunshineConversationsClient.UserRemoveEvent
- SunshineConversationsClient.UserRemoveEventAllOfPayload
- SunshineConversationsClient.UserResponse
- SunshineConversationsClient.UserTruncated
- SunshineConversationsClient.UserUpdateBody
- SunshineConversationsClient.UserUpdateEvent
- SunshineConversationsClient.UserUpdateEventAllOfPayload
- SunshineConversationsClient.Viber
- SunshineConversationsClient.ViberUpdate
- SunshineConversationsClient.Web
- SunshineConversationsClient.WebUpdate
- SunshineConversationsClient.Webhook
- SunshineConversationsClient.WebhookBody
- SunshineConversationsClient.WebhookCreateBody
- SunshineConversationsClient.WebhookListResponse
- SunshineConversationsClient.WebhookResponse
- SunshineConversationsClient.WebhookSubSchema
- SunshineConversationsClient.Webview
- SunshineConversationsClient.WhatsAppConversionEventsBody
- SunshineConversationsClient.WhatsAppUpdate
- SunshineConversationsClient.Whatsapp
- Type: Bearer authentication (JWT)
- Type: HTTP basic authentication