2.0.259 • Published 4 years ago

phonespeak_api v2.0.259

Weekly downloads
1,029
License
Internal Use Only
Repository
-
Last release
4 years ago

phonespeak_api

PhonespeakApi - JavaScript client for phonespeak_api PhoneSpeak API v2 This SDK is automatically generated by the Swagger Codegen project:

  • API version: v2
  • Package version: v2
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install phonespeak_api --save
Local development

To 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

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your phonespeak_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('phonespeak_api') in javascript files from the directory you ran the last command above from.

git

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 --save

For browser

The 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.js

Then include bundle.js in the HTML pages.

Webpack Configuration

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
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var PhonespeakApi = require('phonespeak_api');

var defaultClient = PhonespeakApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix['Authorization'] = "Token"

var api = new PhonespeakApi.AccountApi()

var id = "id_example"; // {String} account id

var startDate = new Date("2013-10-20T19:20:30+01:00"); // {Date} start date

var endDate = new Date("2013-10-20T19:20:30+01:00"); // {Date} end date

var opts = { 
  'type': 56, // {Number} call type
  'size': 56, // {Number} page size
  'pageNum': 56 // {Number} page number
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.accountCallUsage(id, startDate, endDate, opts, callback);

Documentation for API Endpoints

All URIs are relative to http://api-dev.phonespeak.com

ClassMethodHTTP requestDescription
PhonespeakApi.AccountApiaccountCallUsageGET /client/Account/{id}/CallUsageList of Call Usage
PhonespeakApi.AccountApiaccountCreatePOST /client/AccountCreate a single account
PhonespeakApi.AccountApiaccountCreateBillingContactPOST /client/Account/{id}/BillingContactCreate a single billing contact
PhonespeakApi.AccountApiaccountCreateCreditCardPOST /client/Account/{id}/CreditCardCreate credit card
PhonespeakApi.AccountApiaccountCreateInvoicePOST /client/Account/{id}/InvoiceCreate invoice
PhonespeakApi.AccountApiaccountCreateSessionPOST /client/Account/Session
PhonespeakApi.AccountApiaccountDeleteDELETE /client/Account/{id}Delete a single account
PhonespeakApi.AccountApiaccountDeleteBillingContactDELETE /client/Account/{id}/BillingContact/{contactId}Delete billing contact
PhonespeakApi.AccountApiaccountDeleteCreditCardDELETE /client/Account/{id}/CreditCard/{creditCardId}Delete credit card
PhonespeakApi.AccountApiaccountDeleteMusicOnHoldDELETE /client/Account/{id}/MusicOnHold/{mohId}Delete MusicOnHold
PhonespeakApi.AccountApiaccountDisableInternationalCallDELETE /client/Account/{id}/InternationalCallDisable international call
PhonespeakApi.AccountApiaccountEnableInternationalCallPOST /client/Account/{id}/InternationalCallEnable international call
PhonespeakApi.AccountApiaccountGetGET /client/Account/{id}Retrieve a single account
PhonespeakApi.AccountApiaccountGetAvailableUserExtensionGET /client/Account/{id}/Extension/AvailableUpdate business hour
PhonespeakApi.AccountApiaccountGetBillingContactGET /client/Account/{id}/BillingContact/{contactId}Retrieve billing contact details
PhonespeakApi.AccountApiaccountGetCreditCardGET /client/Account/{id}/CreditCard/{creditCardId}Get credit card details
PhonespeakApi.AccountApiaccountGetInvoiceGET /client/Account/{id}/Invoice/{invoiceId}Get invoice
PhonespeakApi.AccountApiaccountGetPhoneNumberGET /client/Account/{id}/PhoneNumberGet Account's Phone Number
PhonespeakApi.AccountApiaccountGetPhoneNumberListGET /client/Account/{id}/PhoneNumberListGet Account's Phone Number (Manage Number)
PhonespeakApi.AccountApiaccountIsCreditCardExistGET /client/Account/{id}/CreditCard/ExistIs Credit card exist
PhonespeakApi.AccountApiaccountListAccountPhoneNumberGET /client/Account/{id}/AccountPhoneNumberList Phone Number
PhonespeakApi.AccountApiaccountListAllowedCountryCodeGET /client/Account/{id}/CallCountryCodeGet list of allowed country code
PhonespeakApi.AccountApiaccountListCreditCardsGET /client/Account/{id}/CreditCardGet list of credit card
PhonespeakApi.AccountApiaccountListE911AddressesGET /client/Account/{id}/E911AddressRetrieve list of E911 address
PhonespeakApi.AccountApiaccountListInvoicesGET /client/Account/{id}/InvoiceGet list of invoices.
PhonespeakApi.AccountApiaccountListMusicOnHoldGET /client/Account/{id}/MusicOnHoldGet list of MusicOnHolds
PhonespeakApi.AccountApiaccountListRateDeckGET /client/Account/{id}/RateDeck
PhonespeakApi.AccountApiaccountTopupCallCreditPUT /client/Account/{id}/CallCreditTopup Call Credit
PhonespeakApi.AccountApiaccountUpdatePUT /client/Account/{id}Update account
PhonespeakApi.AccountApiaccountUpdateAllowedCountryCodePUT /client/Account/{id}/CallCountryCodeAdd allowed country code
PhonespeakApi.AccountApiaccountUpdateBillingContactPUT /client/Account/{id}/BillingContact/{contactId}Update billing contact
PhonespeakApi.AccountApiaccountUpdateCallRecordingPUT /client/Account/{id}/CallRecordingUpdate Call Recording
PhonespeakApi.AccountApiaccountUpdateCompanyAddressPUT /client/Account/{id}/CompanyAddressUpdate company address
PhonespeakApi.AccountApiaccountUpdateCreditCardPUT /client/Account/{id}/CreditCardUpdate credit card
PhonespeakApi.AccountApiaccountUpdateE911AddressPUT /client/Account/{id}/E911AddressUpdate E911 address
PhonespeakApi.AccountApiaccountUpdateInvoicePUT /client/Account/{id}/Invoice/{invoiceId}Update invoice
PhonespeakApi.AccountApiaccountUpdateSelectedMusicOnHoldPUT /client/Account/{id}/MusicOnHold/{mohId}Set MusicOnHold
PhonespeakApi.AccountApiaccountUpdateSubscriptionTrialPUT /client/Account/{id}/Subscription/Trial
PhonespeakApi.AccountApiaccountUpdateTimezonePUT /client/Account/{id}/TimezoneUpdate timezone
PhonespeakApi.AccountApiaccountUploadMusicOnHoldPOST /client/Account/{id}/MusicOnHoldUpload MusicOnHold
PhonespeakApi.AccountApiaccountVerifyCreditCardGET /client/Account/CreditCard/VerifyCreate credit card
PhonespeakApi.AccountApiaccountVerifyInternationalCallPUT /client/Account/{id}/InternationalCallVerify international call
PhonespeakApi.AuthenticationApigetBearerAuthTokenPOST /tokenAuthenticates provided credentials and returns an access token
PhonespeakApi.BillingApibillingCheckoutPOST /client/Billing/Checkout
PhonespeakApi.BillingApibillingCreateInvoicePOST /client/Billing/Invoice
PhonespeakApi.BillingApibillingPaymentTrackingPOST /client/Billing/Payment/Tracking
PhonespeakApi.BillingApibillingUpdateSubscriptionPOST /client/Billing/Subscription
PhonespeakApi.CdrApicdrCallLogExportPOST /client/Cdr/{accountId}/CallLogExportCall Log
PhonespeakApi.CdrApicdrCreatePOST /client/CdrCreate a single cdr
PhonespeakApi.CdrApicdrCreateCallRecordingPOST /client/Cdr/{ownerId}CallRecording/{participant}/ParticipantCreate Call Recording
PhonespeakApi.CdrApicdrDeleteDELETE /client/Cdr/{id}Delete a single cdr
PhonespeakApi.CdrApicdrDeleteCallLogDELETE /client/Cdr/{cdrId}/CallLogCall Log
PhonespeakApi.CdrApicdrDeleteCallRecordingDELETE /client/Cdr/{id}/CallRecordingDelete Call Recording
PhonespeakApi.CdrApicdrDeleteCallSessionDELETE /client/Cdr/{accountId}/CallSessionDelete Call Session
PhonespeakApi.CdrApicdrDeleteRecentCallDELETE /client/Cdr/{id}/RecentCalls/{teammateId}Delete recent call
PhonespeakApi.CdrApicdrGetGET /client/Cdr/{id}Retrieve a single cdr
PhonespeakApi.CdrApicdrGetCallRecordingGET /client/Cdr/{ownerId}/CallRecording/{id}Get Call Recording
PhonespeakApi.CdrApicdrListGET /client/Cdr/{accountId}/ListList all cdrs by account, team mate or team
PhonespeakApi.CdrApicdrListCallLogPOST /client/Cdr/{accountId}/CallLogCall Log
PhonespeakApi.CdrApicdrListCallRecordingGET /client/Cdr/{ownerId}/CallRecordingList Call Recording
PhonespeakApi.CdrApicdrListCallSessionGET /client/Cdr/{accountId}/CallSessionList Call Session
PhonespeakApi.CdrApicdrListRecentActivityGET /client/Cdr/{id}/RecentActivity/{participant}Get all recent call
PhonespeakApi.CdrApicdrListRecentCallsGET /client/Cdr/{id}/RecentCallsGet all recent call
PhonespeakApi.CdrApicdrListRecentCalls_0POST /client/Cdr/{id}/RecentCalls/dummyendpointGet all recent call
PhonespeakApi.CdrApicdrListTeamRecentCallGET /client/Cdr/{id}/TeamRecentCallsGet all team recent call
PhonespeakApi.CdrApicdrUnreadRecentCallCountGET /client/Cdr/{id}/RecentCalls/UnreadCountTotal Unread Recent
PhonespeakApi.CdrApicdrUpdateCallRecordingPUT /client/Cdr/{id}/CallRecordingUpdate Call Recording
PhonespeakApi.CdrApicdrUpdateExtensionStatusPOST /client/Cdr/ExtensionPortsip update extension status
PhonespeakApi.CdrApicdrUpdateRecentCallsReadPUT /client/Cdr/{id}/RecentCalls/ReadUpdate recent call read
PhonespeakApi.CdrApicdrUpdateTeamRecentCallReadStatusPUT /client/Cdr/{id}/TeamRecentCalls/{ownerId}/ReadGet all team recent call
PhonespeakApi.ChatApichatArchiveConversationPUT /client/Chat/Archive/{id}Archive conversation
PhonespeakApi.ChatApichatCreateConversationPOST /client/Chat/ConversationCreate conversation
PhonespeakApi.ChatApichatCreateMessagePOST /client/Chat/MessageSend Message
PhonespeakApi.ChatApichatDeleteConversationDELETE /client/Chat/Conversation/{conversationId}Delete Conversation
PhonespeakApi.ChatApichatDeleteMessageDELETE /client/Chat/Message/{messageId}Delete Message
PhonespeakApi.ChatApichatGetConversationGET /client/Chat/Conversation/{conversationId}Get Conversation
PhonespeakApi.ChatApichatGetExistingConversationPOST /client/Chat/ExistingConversationGet Existing Conversation
PhonespeakApi.ChatApichatGetUnreadConversationCountGET /client/Chat/UnreadConversationCount/{teammateId}Get Unread Conversation Count
PhonespeakApi.ChatApichatListConversationGET /client/Chat/ConversationList the conversation
PhonespeakApi.ChatApichatPinConversationPUT /client/Chat/Pin/{id}Pin conversation
PhonespeakApi.ChatApichatSendSMSPOST /client/Chat/{id}/smsTesting
PhonespeakApi.ChatApichatUnArchiveConversationPUT /client/Chat/UnArchive/{id}UnArchive conversation
PhonespeakApi.ChatApichatUnpinConversationPUT /client/Chat/Unpin/{id}Unpin conversation
PhonespeakApi.ChatApichatUpdateAllMessagesToReadPUT /client/Chat/UpdateAllMessagesToRead/{teammateId}Update all conversation's messages to read
PhonespeakApi.ChatApichatUpdateGroupImagePUT /client/Chat/GroupImage/{conversationId}Update Group Image
PhonespeakApi.ChatApichatUpdateGroupNamePUT /client/Chat/GroupName/{conversationId}Update Group Name
PhonespeakApi.CloudSoftPhoneApicloudSoftPhoneFetchMessagePOST /CloudSoftPhone/Message/FetchList all contacts
PhonespeakApi.CloudSoftPhoneApicloudSoftPhoneListContactsGET /CloudSoftPhone/ContactList all contacts
PhonespeakApi.CloudSoftPhoneApicloudSoftPhoneLoginGET /CloudSoftPhone/ProvLogin
PhonespeakApi.CloudSoftPhoneApicloudSoftPhonePushTokenReporterPOST /CloudSoftPhone/PushTokenList all contacts
PhonespeakApi.CloudSoftPhoneApicloudSoftPhoneSendMessagePOST /CloudSoftPhone/MessageList all contacts
PhonespeakApi.CompanyNumberApicompanyNumberAddPhoneNumberPOST /client/CompanyNumber/{id}/PhoneNumberAdd Phone Number for Company Number
PhonespeakApi.CompanyNumberApicompanyNumberCreatePOST /client/CompanyNumberCreate a single Company Number
PhonespeakApi.CompanyNumberApicompanyNumberCreateIvrPOST /client/CompanyNumber/{id}/IvrCreate Company Number's ivr
PhonespeakApi.CompanyNumberApicompanyNumberDeleteDELETE /client/CompanyNumber/{id}Delete a single Company Number
PhonespeakApi.CompanyNumberApicompanyNumberDeleteIvrDELETE /client/CompanyNumber/{id}/Ivr/{ivrNumber}Delete Company Number's ivr
PhonespeakApi.CompanyNumberApicompanyNumberDeleteIvrGreetingDELETE /client/CompanyNumber/{id}/Ivr/{ivrNumber}/Greeting/{greetingId}Delete Ivr Greeting File
PhonespeakApi.CompanyNumberApicompanyNumberDeletePhoneNumberDELETE /client/CompanyNumber/{id}/PhoneNumber/{phoneNumberId}Delete Phone Number for Company Number
PhonespeakApi.CompanyNumberApicompanyNumberGetGET /client/CompanyNumber/{id}Retrieve a single Company Number by id
PhonespeakApi.CompanyNumberApicompanyNumberIvrConvertTextToSpeechPOST /client/CompanyNumber/{id}/Ivr/{ivrNumber}/Greeting/SpeechGreetingIvr Convert text to speech
PhonespeakApi.CompanyNumberApicompanyNumberListGET /client/CompanyNumberList all Company Numbers by account
PhonespeakApi.CompanyNumberApicompanyNumberListAvailableTeammatesGET /client/CompanyNumber/{id}/ListAvailableTeammatesGet Teammate list for company number
PhonespeakApi.CompanyNumberApicompanyNumberListIvrGreetingsGET /client/CompanyNumber/{id}/Ivr/{ivrNumber}/GreetingList Ivr Greetings for a team
PhonespeakApi.CompanyNumberApicompanyNumberUpdatePUT /client/CompanyNumber/{id}Update a single Company Number by id
PhonespeakApi.CompanyNumberApicompanyNumberUpdateBusinessHourPUT /client/CompanyNumber/{id}/BusinessHourUpdate Company Number Business Hour by id
PhonespeakApi.CompanyNumberApicompanyNumberUpdateCallerIdPermissionPUT /client/CompanyNumber/{id}/CallerIdPermissionAdd teammate for Company Number
PhonespeakApi.CompanyNumberApicompanyNumberUpdateClosedHourHandlingPUT /client/CompanyNumber/{id}/ClosedHourHandlingUpdate Company Number Closed Hour Handling
PhonespeakApi.CompanyNumberApicompanyNumberUpdateIvrKeyPUT /client/CompanyNumber/{id}/Ivr/{ivrNumber}/IvrKey/{keyNumber}Update Ivr Key
PhonespeakApi.CompanyNumberApicompanyNumberUpdateIvrNamePUT /client/CompanyNumber/{id}/Ivr/{ivrNumber}/Name/{ivrName}Update Company Number's ivr
PhonespeakApi.CompanyNumberApicompanyNumberUpdateIvrTimeoutPUT /client/CompanyNumber/{id}/Ivr/{ivrNumber}Update Ivr Timeout
PhonespeakApi.CompanyNumberApicompanyNumberUpdateOpenHourHandlingPUT /client/CompanyNumber/{id}/OpenHourHandlingUpdate Company Number Open Hour Handling
PhonespeakApi.CompanyNumberApicompanyNumberUpdatePhoneNumberPUT /client/CompanyNumber/{id}/PhoneNumber/{phoneNumberId}Add Phone Number
PhonespeakApi.CompanyNumberApicompanyNumberUpdateSMSHandlingPUT /client/CompanyNumber/{id}/Sms/SMSHandlingUpdate SMS Handling for Company Number
PhonespeakApi.CompanyNumberApicompanyNumberUpdateSelectedIvrGreetingPUT /client/CompanyNumber/{id}/Ivr/{ivrNumber}/Greeting/{greetingId}Update/Set a Company Number's default Voicemail Greeting
PhonespeakApi.CompanyNumberApicompanyNumberUploadIvrGreetingPOST /client/CompanyNumber/{id}/Ivr/{ivrNumber}/GreetingUpload Ivr Greeting File
PhonespeakApi.ContactApicontactBlockPUT /client/Contact/{id}/BlockBlock contact (either contactId or callerNumber)
PhonespeakApi.ContactApicontactBlockedListGET /client/Contact/{id}/BlockedListList all blocked contacts and number
PhonespeakApi.ContactApicontactCreatePOST /client/Contact/{id}/CreateCreate a single contact
PhonespeakApi.ContactApicontactDeleteDELETE /client/Contact/{id}/Delete/{contactId}Delete a single contact
PhonespeakApi.ContactApicontactExportContactGET /client/Contact/{teammateId}/ExportImport Contact
PhonespeakApi.ContactApicontactFavouritePUT /client/Contact/{id}/Favourite/{contactId}SetFavourite contact
PhonespeakApi.ContactApicontactGetGET /client/Contact/{id}/Get/{contactId}Retrieve a single contact
PhonespeakApi.ContactApicontactGetFolderGET /client/Contact/{id}/Folder/{folderId}Retrieve folder by id
PhonespeakApi.ContactApicontactGetFolderListGET /client/Contact/{id}/FolderList all folder
PhonespeakApi.ContactApicontactImportContactPOST /client/Contact/{teammateId}/ImportImport Contact
PhonespeakApi.ContactApicontactListGET /client/Contact/{id}/ListList all contacts by team mate
PhonespeakApi.ContactApicontactSharedListGET /client/Contact/{id}/SharedListList all shared contacts by team mate
PhonespeakApi.ContactApicontactUnBlockPUT /client/Contact/{id}/UnBlockUnBlock contact (either contactId or callerNumber)
PhonespeakApi.ContactApicontactUnFavouritePUT /client/Contact/{id}/UnFavourite/{contactId}UnFavourite contact
PhonespeakApi.ContactApicontactUpdatePUT /client/Contact/{id}/UpdateUpdate a single contact
PhonespeakApi.CsrApicsrAddNumberPUT /client/Csr/Number/{id}Add Phone Number
PhonespeakApi.CsrApicsrApplyInvoiceCouponPOST /client/Csr/Account/{id}/InvoiceCouponApply Invoice Coupon
PhonespeakApi.CsrApicsrApplySubscriptionCouponPOST /client/Csr/Account/{id}/SubscriptionCouponApply Subscription Coupon
PhonespeakApi.CsrApicsrCallLogExportGET /client/Csr/CallLog/ExportExport Call Log
PhonespeakApi.CsrApicsrCheckLnpPOST /client/Csr/Account/Portin/CheckLnpCheck Lnp
PhonespeakApi.CsrApicsrCompleteOrderPUT /client/Csr/Order/{orderId}/CompleteComplete Order
PhonespeakApi.CsrApicsrCreatePOST /client/Csr/RepresentativeCreate a single Csr user
PhonespeakApi.CsrApicsrCreateAccountPOST /client/Csr/AccountCreate a single account
PhonespeakApi.CsrApicsrCreateLnpPOST /client/Csr/Account/{accountId}/PortinCreate Lnp
PhonespeakApi.CsrApicsrCreateProductPOST /client/Csr/ProductCreate Product
PhonespeakApi.CsrApicsrDeleteDELETE /client/Csr/Representative/{id}Delete a single Csr user
PhonespeakApi.CsrApicsrDeleteLnpDELETE /client/Csr/Account/{accountId}/Portin/{orderId}Delete Lnp
PhonespeakApi.CsrApicsrDeleteTeammateDELETE /client/Csr/Account/{id}/Teammate/{teammateId}Delete a single teammate
PhonespeakApi.CsrApicsrForgotPasswordPOST /client/Csr/ForgotPasswordCsr Forgot password
PhonespeakApi.CsrApicsrGetGET /client/Csr/Representative/{id}Retrieve a single Csr user
PhonespeakApi.CsrApicsrGetAccountGET /client/Csr/Account/{id}Retrieve a single account
PhonespeakApi.CsrApicsrGetCallLogGET /client/Csr/CallLog/{id}List all call log
PhonespeakApi.CsrApicsrGetLnpGET /client/Csr/Account/{accountId}/Portin/{orderId}Get Lnp
PhonespeakApi.CsrApicsrGetOrderGET /client/Csr/Order/{orderId}Get Order
PhonespeakApi.CsrApicsrGetUncoveredRateGET /client/Csr/RateDeck/UncoveredRateGet current Uncovered Rate
PhonespeakApi.CsrApicsrGiveCreditPOST /client/Csr/Account/{id}/CreditGive Credit
PhonespeakApi.CsrApicsrImportRateDeckPOST /client/Csr/RateDeck/ImportImport Rate Deck
PhonespeakApi.CsrApicsrListGET /client/Csr/RepresentativeRetrieve list of Csr users
PhonespeakApi.CsrApicsrListAccountCompanyNumberGET /client/Csr/Account/{id}/CompanyNumberList all Company Numbers by account
PhonespeakApi.CsrApicsrListAccountPhoneNumberGET /client/Csr/Account/{id}/PhoneNumberList Phone Number
PhonespeakApi.CsrApicsrListAccountTeammateGET /client/Csr/Account/{id}/TeammateGet all teammates by account
PhonespeakApi.CsrApicsrListAccountsGET /client/Csr/AccountRetrieve list of all accounts
PhonespeakApi.CsrApicsrListCallLogGET /client/Csr/CallLogList all call log
PhonespeakApi.CsrApicsrListChargeGET /client/Csr/Account/{id}/ChargeList Charge
PhonespeakApi.CsrApicsrListLnpPOST /client/Csr/Account/Portin/ListLnpList Lnp
PhonespeakApi.CsrApicsrListOrderGET /client/Csr/Order/ListList Order
PhonespeakApi.CsrApicsrListPhysicalPhoneByOrderIdGET /client/Csr/Account/{id}/PhysicalPhone/{orderId}List Physical Phone by orderId
PhonespeakApi.CsrApicsrLoginPOST /client/Csr/LoginLogin
PhonespeakApi.CsrApicsrManualChargePOST /client/Csr/Account/{id}/ChargeManual Charge
PhonespeakApi.CsrApicsrMoveNumberPUT /client/Csr/Number/{id}/MoveMove Number
PhonespeakApi.CsrApicsrRefundGET /client/Csr/Account/{accountId}/Refund/{chargeId}Create Refund
PhonespeakApi.CsrApicsrUpdatePUT /client/Csr/Representative/{id}Update a single Csr user
PhonespeakApi.CsrApicsrUpdateAccountDetailsPUT /client/Csr/Account/{id}Update account
PhonespeakApi.CsrApicsrUpdateAccountPackagePUT /client/Csr/Account/{id}/PackageUpdate account package
PhonespeakApi.CsrApicsrUpdateAccountSettingPUT /client/Csr/Account/{id}/SettingUpdate Setting
PhonespeakApi.CsrApicsrUpdateAccountStatusPUT /client/Csr/Account/{id}/StatusUpdate Account Status
PhonespeakApi.CsrApicsrUpdateCsrPasswordPUT /client/Csr/Representative/{id}/PasswordUpdate a single Csr User Password
PhonespeakApi.CsrApicsrUpdateMacAddressPUT /client/Csr/Account/{id}/PhysicalPhoneUpdate Physical Phone Mac Address
PhonespeakApi.CsrApicsrUpdateReferenceIdPUT /client/Csr/Order/{orderId}/Reference/{referenceId}Update Reference Id
PhonespeakApi.CsrApicsrUpdateShippingAddressPUT /client/Csr/Order/{orderId}/AddressUpdate Shipping Address
PhonespeakApi.CsrApicsrUpdateTollFreeRateDeckPUT /client/Csr/RateDeck/TollFreeUpdate TollFree RateDeck
PhonespeakApi.CsrApicsrUpdateTrackingLinkPOST /client/Csr/Order/{orderId}/TrackingUpdate Tracking Link
PhonespeakApi.CsrApicsrUpdateUncoveredRateDeckPUT /client/Csr/RateDeck/UncoveredRateUpdate Uncovered RateDeck
PhonespeakApi.CsrApicsrUploadLoasPUT /client/Csr/Account/{id}/Portin/{orderId}/UploadLoasUpoad Loas
PhonespeakApi.CsrApicsrUploadProfileImagePOST /client/Csr/Representative/{id}/ProfileImageUpload profile image (format-accepted: .gif.jpg.jpeg.png)
PhonespeakApi.DeskPhoneApideskPhoneAddToCartPOST /client/deskphone/CartAdd to Cart
PhonespeakApi.DeskPhoneApideskPhoneConfirmOrderPUT /client/deskphone/Order/Confirm/{orderId}Confirm Order
PhonespeakApi.DeskPhoneApideskPhoneDeleteAllCartByOwnerIdDELETE /client/deskphone/Cart/Owner/{ownerId}Delete All Cart By Owner Id
PhonespeakApi.DeskPhoneApideskPhoneDeleteCartDELETE /client/deskphone/Cart/{cartId}Delete Single cart
PhonespeakApi.DeskPhoneApideskPhoneGetCartGET /client/deskphone/Cart/{cartId}Get Single cart
PhonespeakApi.DeskPhoneApideskPhoneGetOrderGET /client/deskphone/Order/{orderId}Get Order
PhonespeakApi.DeskPhoneApideskPhoneGetProductGET /client/deskphone/Product/{productId}Get Product
PhonespeakApi.DeskPhoneApideskPhoneListCartGET /client/deskphone/Cart/{ownerId}/ListGet List of Cart by owner id
PhonespeakApi.DeskPhoneApideskPhoneListDeskPhoneGET /client/deskphone/DeskPhone/ListList DeskPhone
PhonespeakApi.DeskPhoneApideskPhoneListOrderGET /client/deskphone/Order/{ownerId}/ListList Order by OwnerId
PhonespeakApi.DeskPhoneApideskPhoneListProductGET /client/deskphone/ProductGet List of Product
PhonespeakApi.DeskPhoneApideskPhoneListShippingOptionGET /client/deskphone/ShippingOption/ListList Shipping Option
PhonespeakApi.DeskPhoneApideskPhonePlaceOrderPOST /client/deskphone/Order/PlacePlace Order
PhonespeakApi.DeskPhoneApideskPhoneUpdateCartPUT /client/deskphone/Cart/{cartId}Update Single cart
PhonespeakApi.DeskPhoneApideskPhoneUpdateCartsPUT /client/deskphone/CartUpdate List of Cart
PhonespeakApi.EmailApiemailCreatePOST /client/Email/CreateCreate a single email template
PhonespeakApi.EmailApiemailDeleteDELETE /client/Email/{templateid}/DeleteDelete email template
PhonespeakApi.EmailApiemailGetGET /client/Email/{templateid}/GetRetrieve a single email template by id
PhonespeakApi.EmailApiemailListGET /client/Email/ListRetrieve list of email templates
PhonespeakApi.EmailApiemailUpdatePUT /client/Email/{id}/UpdateUpdate a single email template
PhonespeakApi.NoteApinoteCreatePOST /client/note/CreateCreate a single note
PhonespeakApi.NoteApinoteDeleteDELETE /client/note/{noteId}Delete note
PhonespeakApi.NoteApinoteGetGET /client/note/{noteId}Retrieve a single Note
PhonespeakApi.NoteApinoteListGET /client/note/{ownerId}/ListList Notes
PhonespeakApi.NoteApinoteUpdatePUT /client/note/{noteId}Update note
PhonespeakApi.NumberApinumberGetPOST /client/Number/GetGet List of Numbers
PhonespeakApi.NumberApinumberGetAreaCodeGET /client/Number/GetAreaCodesGet Area Codes
PhonespeakApi.NumberApinumberGetPhoneNumDetailsGET /client/Number/GetPhoneNumDetailsGet Phone Number Detail
PhonespeakApi.NumberApinumberGetStatesGET /client/Number/GetStatesGet available states
PhonespeakApi.NumberApinumberGetUserStateGET /client/Number/UserState
PhonespeakApi.NumberApinumberMoveNumberPUT /client/Number/{id}/MoveMove Number
PhonespeakApi.NumberApinumberReservePOST /client/Number/ReserveReserve Number
PhonespeakApi.NumberApinumberValidateE911AddressPOST /client/Number/E911AddressValidate the E911 address
PhonespeakApi.ServiceApiserviceInsertGLogPOST /client/Service/GLogInsert GLog
PhonespeakApi.SmsApismsCreateBandwidthSmsInboundPOST /client/Sms/BandwidthReceive SMS from Bandwidth
PhonespeakApi.SmsApismsCreateBandwidthSmsInboundV2POST /client/Sms/Bandwidth/v2Receive SMS from Bandwidth
PhonespeakApi.SmsApismsCreateIntelliquentSmsInboundPOST /client/Sms/InteliquentReceive SMS from Inteliquent
PhonespeakApi.SubscriptionApisubscriptionCreatePackagePOST /client/subscription/PackageCreate Package
PhonespeakApi.SubscriptionApisubscriptionCreateUrlPOST /client/subscription/Url/CreateCreate Url
PhonespeakApi.SubscriptionApisubscriptionDeleteDELETE /client/subscription/Package/{id}Delete a single package
PhonespeakApi.SubscriptionApisubscriptionDeleteUrlDELETE /client/subscription/Url/{urlId}Delete Url
PhonespeakApi.SubscriptionApisubscriptionGetUrlGET /client/subscription/Url/{urlId}Get Single Url
PhonespeakApi.SubscriptionApisubscriptionListInvoiceCouponGET /client/subscription/Coupon/InvoiceList Invoice Coupon
PhonespeakApi.SubscriptionApisubscriptionListPackageGET /client/subscription/PackageList all Package
PhonespeakApi.SubscriptionApisubscriptionListPackagePlanGET /client/subscription/Package/PlanList all plan
PhonespeakApi.SubscriptionApisubscriptionListPlanGET /client/subscription/Plan/{packageId}List Plan
PhonespeakApi.SubscriptionApisubscriptionListStripeProductGET /client/subscription/StripeProduct/ListGet List of Stripe Product
PhonespeakApi.SubscriptionApisubscriptionListSubscriptionCouponGET /client/subscription/Coupon/SubscriptionList Subscription Coupon
PhonespeakApi.SubscriptionApisubscriptionListUrlGET /client/subscription/Url/ListGet list of url
PhonespeakApi.SubscriptionApisubscriptionUpdatePackagePUT /client/subscription/Package/{id}Update Package
PhonespeakApi.SubscriptionApisubscriptionUpdateUrlPUT /client/subscription/Url/{urlId}Update Url
PhonespeakApi.SupportApisupportGetLocationGET /client/Support/Location
PhonespeakApi.SupportApisupportSupportSendEmailPOST /client/Support/Email
PhonespeakApi.TeamApiteamConvertTextToSpeechPOST /client/Team/{id}/VoicemailGreeting/SpeechGreetingConvert text to speech
PhonespeakApi.TeamApiteamCreatePOST /client/TeamCreate a single team
PhonespeakApi.TeamApiteamCreateIvrPOST /client/Team/{id}/IvrCreate team's ivr
PhonespeakApi.TeamApiteamDeleteDELETE /client/Team/{id}Delete a single team
PhonespeakApi.TeamApiteamDeleteIvrDELETE /client/Team/{id}/Ivr/{ivrNumber}Delete team's ivr
PhonespeakApi.TeamApiteamDeleteIvrGreetingDELETE /client/Team/{id}/Ivr/{ivrNumber}/Greeting/{greetingId}Delete Ivr Greeting File
PhonespeakApi.TeamApiteamDeleteMusicOnHoldDELETE /client/Team/{id}/MusicOnHold/{mohId}Delete MusicOnHold file
PhonespeakApi.TeamApiteamDeleteVoicemailGreetingDELETE /client/Team/{id}/VoicemailGreeting/{voicemailId}Delete Voicemail Greeting File
PhonespeakApi.TeamApiteamGetGET /client/Team/{id}Retrieve a single team by id
PhonespeakApi.TeamApiteamIvrConvertTextToSpeechPOST /client/Team/{id}/Ivr/{ivrNumber}/Greeting/SpeechGreetingIvr Convert text to speech
PhonespeakApi.TeamApiteamListGET /client/TeamList all teams by account
PhonespeakApi.TeamApiteamListAvailableNumberGET /client/Team/{id}/AvailableNumberList Caller Id
PhonespeakApi.TeamApiteamListAvailableTeammatesGET /client/Team/{id}/ListAvailableTeammatesGet Teammate list for team
PhonespeakApi.TeamApiteamListIvrGreetingsGET /client/Team/{id}/Ivr/{ivrNumber}/GreetingList Ivr Greetings for a team
PhonespeakApi.TeamApiteamListMusicOnHoldGET /client/Team/{id}/MusicOnHoldList MusicOnHolds for team
PhonespeakApi.TeamApiteamListTeamsByTeammateGET /client/Team/TeammateList all teams by teammate
PhonespeakApi.TeamApiteamListVoicemailGreetingsGET /client/Team/{id}/VoicemailGreetingList Voicemail Greetings for a team
PhonespeakApi.TeamApiteamTeamSummaryGET /client/Team/{teamId}/TeamSummaryTeam Summary
PhonespeakApi.TeamApiteamUpdatePUT /client/Team/{id}Update a single team
PhonespeakApi.TeamApiteamUpdateBusinessHourPUT /client/Team/{id}/BusinessHourUpdate team business hour
PhonespeakApi.TeamApiteamUpdateCallQueuePUT /client/Team/{id}/CallQueueUpdate team's call queue
PhonespeakApi.TeamApiteamUpdateCallRoutingPUT /client/Team/{id}/CallRoutingUpdate team call routing
PhonespeakApi.TeamApiteamUpdateClosedHourHandlingPUT /client/Team/{id}/ClosedHourHandlingUpdate team close hour call handling
PhonespeakApi.TeamApiteamUpdateIvrKeyPUT /client/Team/{id}/Ivr/{ivrNumber}/IvrKey/{keyNumber}Update Ivr Key
PhonespeakApi.TeamApiteamUpdateIvrNamePUT /client/Team/{id}/Ivr/{ivrNumber}/Name/{ivrName}Update team's ivr
PhonespeakApi.TeamApiteamUpdateIvrTimeoutPUT /client/Team/{id}/Ivr/{ivrNumber}Update Ivr Timeout
PhonespeakApi.TeamApiteamUpdateMissedCallHandlingPUT /client/Team/{id}/MissedCallHandlingUpdate team miss call handling
PhonespeakApi.TeamApiteamUpdateOpenHourHandlingPUT /client/Team/{id}/OpenHourHandlingUpdate team open hour call handling
PhonespeakApi.TeamApiteamUpdateRingGroupPUT /client/Team/{id}/RingGroupUpdate team's ring group
PhonespeakApi.TeamApiteamUpdateSelectedIvrGreetingPUT /client/Team/{id}/Ivr/{ivrNumber}/Greeting/{greetingId}Update/Set a Team's default Voicemail Greeting
PhonespeakApi.TeamApiteamUpdateSelectedMusicOnHoldPUT /client/Team/{id}/MusicOnHold/{mohId}Update/Set team's default MusicOnHold
PhonespeakApi.TeamApiteamUpdateSelectedVoicemailGreetingPUT /client/Team/{id}/VoicemailGreeting/{voicemailId}Update/Set a Team's default Voicemail Greeting
PhonespeakApi.TeamApiteamUpdateTeammatePUT /client/Team/{id}/TeammateUpdate team's teammate list
PhonespeakApi.TeamApiteamUploadIvrGreetingPOST /client/Team/{id}/Ivr/{ivrNumber}/GreetingUpload Ivr Greeting File
PhonespeakApi.TeamApiteamUploadMusicOnHoldPOST /client/Team/{id}/MusicOnHoldUpload MusicOnHold File
PhonespeakApi.TeamApiteamUploadVoicemailGreetingPOST /client/Team/{id}/VoicemailGreetingUpload Voicemail Greeting File
PhonespeakApi.TeammateApiteammateAddDndPOST /client/Teammate/{id}/DndAdd Dnd Team
PhonespeakApi.TeammateApiteammateAddPhoneNumberPOST /client/Teammate/{id}/PhoneNumberAdd Phone Number
PhonespeakApi.TeammateApiteammateAuthenticatePOST /client/Teammate/{accountId}/Authenticate/{id}
PhonespeakApi.TeammateApiteammateAvailableContactListGET /client/Teammate/{id}/AvailableContactListGet all available number of teammate
PhonespeakApi.TeammateApiteammateConvertTextToSpeechPOST /client/Teammate/{id}/VoicemailGreeting/SpeechGreetingConvert text to speech(voicemail greeting)
PhonespeakApi.TeammateApiteammateCreatePOST /client/TeammateCreate a single teammate (PreCond : Get and reserve the number to create the teammate)
PhonespeakApi.TeammateApiteammateDeleteDELETE /client/Teammate/{id}Delete a single teammate
PhonespeakApi.TeammateApiteammateDeletePhoneNumberDELETE /client/Teammate/{id}/PhoneNumber/{phoneNumberId}Delete Phone Number
PhonespeakApi.TeammateApiteammateDeleteVoicemailGreetingDELETE /client/Teammate/{id}/VoicemailGreeting/{voicemailId}Delete voicemail greeting
PhonespeakApi.TeammateApiteammateDummyEndpointAvailableContactListGET /client/Teammate/{id}/AvailableContactList/DummyEndpointGet all available number of teammate (Dummy Endpoint)
PhonespeakApi.TeammateApiteammateGetGET /client/Teammate/{id}Retrieve a single teammate
PhonespeakApi.TeammateApiteammateGetTeammateEmailGET /client/Teammate/GetTeammateEmailCheck email is exist
PhonespeakApi.TeammateApiteammateListGET /client/TeammateGet all teammates
PhonespeakApi.TeammateApiteammateListAvailableUseNumberGET /client/Teammate/{id}/AvailableUseNumberList Caller Id
PhonespeakApi.TeammateApiteammateListVoicemailGreetingsGET /client/Teammate/{id}/VoicemailGreetingGet list of voicemail greetings
PhonespeakApi.TeammateApiteammateLoginPOST /client/Teammate/LoginLogin
PhonespeakApi.TeammateApiteammateLoginImpersonatePOST /client/Teammate/{accountId}/Impersonate/{id}Impersonate login
PhonespeakApi.TeammateApiteammateNewPasswordPUT /client/Teammate/{id}/NewPasswordLogin and change password.
PhonespeakApi.TeammateApiteammateProcessOnBoardingPUT /client/Teammate/{id}/ProcessOnBoardingOn boarding for first time teammate (included create extension)
PhonespeakApi.TeammateApiteammateRemoveDndDELETE /client/Teammate/{id}/DndRemove Dnd Team
PhonespeakApi.TeammateApiteammateResendActivationPOST /client/Teammate/{id}/ActivationResend activation email
PhonespeakApi.TeammateApiteammateResetPasswordPOST /client/Teammate/ResetPasswordForgot password
PhonespeakApi.TeammateApiteammateResetPassword_0POST /client/Teammate/{id}/ResetPasswordAdmin reset teammate's password
PhonespeakApi.TeammateApiteammateSearchContactGET /client/Teammate/{teammateId}/SearchContactList contact by teammate
PhonespeakApi.TeammateApiteammateSearchMessageGET /client/Teammate/{teammateId}/SearchMessageList message by teammate
PhonespeakApi.TeammateApiteammateUnreadCountGET /client/Teammate/{id}/UnreadCountTotal Unread
PhonespeakApi.TeammateApiteammateUpdatePUT /client/Teammate/{id}Update details
PhonespeakApi.TeammateApiteammateUpdateBusinessHourPUT /client/Teammate/{id}/BusinessHourUpdate business hour
PhonespeakApi.TeammateApiteammateUpdateCallRecordingPUT /client/Teammate/{id}/CallRecordingUpdate voicemail pin
PhonespeakApi.TeammateApiteammateUpdateCallWaitingPUT /client/Teammate/{id}/CallWaitingUpdate call waiting setting
PhonespeakApi.TeammateApiteammateUpdateChangePasswordStatusPUT /client/Teammate/{id}/ChangePasswordStatusUpdate change password status (required to change the password after login.)
PhonespeakApi.TeammateApiteammateUpdateDefaultCallerIdPUT /client/Teammate/{id}/CallerId/{phoneNumberId}Update default Caller Id
PhonespeakApi.TeammateApiteammateUpdateE911AddressPUT /client/Teammate/{id}/E911AddressUpdate E911 address
PhonespeakApi.TeammateApiteammateUpdateE911AddressListPUT /client/Teammate/{id}/E911AddressListUpdate E911 address List
PhonespeakApi.TeammateApiteammateUpdateEmailPUT /client/Teammate/{id}/EmailUpdate email
PhonespeakApi.TeammateApiteammateUpdateMissedCallHandlingPUT /client/Teammate/{id}/MissedCallHandlingUpdate miss call handling
PhonespeakApi.TeammateApiteammateUpdateOnboardingStatusPUT /client/Teammate/{id}/OnboardingStatusUpdate onboarding status (required to go through on boarding process after login)
PhonespeakApi.TeammateApiteammateUpdateOnlineStatusPUT /client/Teammate/{id}/OnlineStatusUpdate online status
PhonespeakApi.TeammateApiteammateUpdatePasswordPUT /client/Teammate/{id}/UpdatePasswordTeammate update self password
PhonespeakApi.TeammateApiteammateUpdatePbxOnlineStatusPUT /client/Teammate/{id}/PbxOnlineStatusUpdate Pbx online status
PhonespeakApi.TeammateApiteammateUpdatePhoneNumberPUT /client/Teammate/{id}/PhoneNumber/{phoneNumberId}Update Phone Number
PhonespeakApi.TeammateApiteammateUpdateSelectedVoicemailGreetingPUT /client/Teammate/{id}/VoicemailGreeting/{voicemailId}Set voicemail greeting
PhonespeakApi.TeammateApiteammateUpdateStatusPUT /client/Teammate/{id}/StatusUpdate status
PhonespeakApi.TeammateApiteammateUpdateVoicemailPinPUT /client/Teammate/{id}/VoicemailPinUpdate voicemail pin
PhonespeakApi.TeammateApiteammateUploadProfileImagePOST /client/Teammate/{id}/ProfileImageUpload profile image (format-accepted: .gif.jpg.jpeg.png)
PhonespeakApi.TeammateApiteammateUploadVoicemailGreetingPOST /client/Teammate/{id}/VoicemailGreetingUpload voicemail greeting
PhonespeakApi.VoicemailApivoicemailDeleteDELETE /client/Voicemail/{id}Delete a single voicemail
PhonespeakApi.VoicemailApivoicemailListGET /client/Voicemail/{ownerId}List all voicemails by owner id
PhonespeakApi.VoicemailApivoicemailListDummyEndPointGET /client/Voicemail/{ownerId}/dummyendpointList all voicemails by owner id
PhonespeakApi.VoicemailApivoicemailUnreadVoicemailCountGET /client/Voicemail/{id}/UnreadCountTotal Unread Voicemail
PhonespeakApi.VoicemailApivoicemailUpdateAllVoicemailReadStatusPUT /client/Voicemail/{ownerId}/ReadUpdate all voicemail read status
PhonespeakApi.VoicemailApivoicemailUpdateVoicemailReadStatusPUT /client/Voicemail/{ownerId}/Read/{id}Update voicemail read status
PhonespeakApi.VoicemailApivoicemailUpdateVoicemailUnreadStatusPUT /client/Voicemail/{ownerId}/Unread/{id}Update voicemail unread status

Documentation for Models

Documentation for Authorization

Authorization

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header
2.0.259

4 years ago

2.0.258

4 years ago

2.0.257

4 years ago

2.0.256

4 years ago

2.0.255

4 years ago

2.0.254

4 years ago

2.0.253

4 years ago

2.0.252

4 years ago

2.0.251

4 years ago

2.0.250

4 years ago

2.0.249

4 years ago

2.0.248

5 years ago

2.0.247

5 years ago

2.0.246

5 years ago

2.0.245

5 years ago

2.0.244

5 years ago

2.0.243

5 years ago

2.0.242

5 years ago

2.0.241

5 years ago

2.0.240

5 years ago

2.0.239

5 years ago

2.0.238

5 years ago

2.0.237

5 years ago

2.0.236

5 years ago

2.0.235

5 years ago

2.0.234

5 years ago

2.0.233

5 years ago

2.0.232

5 years ago

2.0.231

5 years ago

2.0.230

5 years ago

2.0.229

5 years ago

2.0.228

5 years ago

2.0.227

5 years ago

2.0.226

5 years ago

2.0.225

5 years ago

2.0.224

5 years ago

2.0.223

5 years ago

2.0.222

5 years ago

2.0.221

5 years ago

2.0.220

5 years ago

2.0.219

5 years ago

2.0.218

5 years ago

2.0.217

5 years ago

2.0.216

5 years ago

2.0.215

5 years ago

2.0.214

5 years ago

2.0.213

5 years ago

2.0.212

5 years ago

2.0.211

5 years ago

2.0.210

5 years ago

2.0.209

5 years ago

2.0.208

5 years ago

2.0.207

5 years ago

2.0.206

5 years ago

2.0.205

5 years ago

2.0.204

5 years ago

2.0.203

5 years ago

2.0.202

5 years ago

2.0.201

5 years ago

2.0.200

5 years ago

2.0.199

5 years ago

2.0.198

5 years ago

2.0.197

5 years ago

2.0.196

5 years ago

2.0.195

5 years ago

2.0.194

5 years ago

2.0.193

5 years ago

2.0.192

5 years ago

2.0.191

5 years ago

2.0.190

5 years ago

2.0.189

5 years ago

2.0.188

5 years ago

2.0.187

5 years ago

2.0.186

5 years ago

2.0.185

5 years ago

2.0.184

5 years ago

2.0.183

5 years ago

2.0.182

5 years ago

2.0.181

5 years ago

2.0.180

5 years ago

2.0.179

5 years ago

2.0.178

5 years ago

2.0.177

5 years ago

2.0.176

5 years ago

2.0.175

5 years ago

2.0.174

5 years ago

2.0.173

5 years ago

2.0.172

5 years ago

2.0.171

5 years ago

2.0.170

5 years ago

2.0.169

5 years ago

2.0.168

5 years ago

2.0.167

5 years ago

2.0.166

5 years ago

2.0.165

5 years ago

2.0.164

5 years ago

2.0.163

5 years ago

2.0.162

5 years ago

2.0.161

5 years ago

2.0.160

5 years ago

2.0.159

5 years ago

2.0.158

5 years ago

2.0.157

5 years ago

2.0.156

5 years ago

2.0.155

5 years ago

2.0.154

5 years ago

2.0.153

5 years ago

2.0.152

5 years ago

2.0.151

5 years ago

2.0.150

5 years ago

2.0.149

5 years ago

2.0.148

6 years ago

2.0.147

6 years ago

2.0.146

6 years ago

2.0.145

6 years ago

2.0.144

6 years ago

2.0.143

6 years ago

2.0.142

6 years ago

2.0.141

6 years ago

2.0.140

6 years ago

2.0.139

6 years ago

2.0.138

6 years ago

2.0.137

6 years ago

2.0.136

6 years ago

2.0.135

6 years ago

2.0.134

6 years ago

2.0.133

6 years ago

2.0.132

6 years ago

2.0.131

6 years ago

2.0.130

6 years ago

2.0.129

6 years ago

2.0.128

6 years ago

2.0.127

6 years ago

2.0.126

6 years ago

2.0.125

6 years ago

2.0.124

6 years ago

2.0.123

6 years ago

2.0.122

6 years ago

2.0.121

6 years ago

2.0.120

6 years ago

2.0.119

6 years ago

2.0.118

6 years ago

2.0.117

6 years ago

2.0.116

6 years ago

2.0.115

6 years ago

2.0.114

6 years ago

2.0.113

6 years ago

2.0.112

6 years ago

2.0.111

6 years ago

2.0.110

6 years ago

2.0.109

6 years ago

2.0.108

6 years ago

2.0.107

6 years ago

2.0.106

6 years ago

2.0.105

6 years ago

2.0.104

6 years ago

2.0.103

6 years ago

2.0.102

6 years ago

2.0.101

6 years ago

2.0.100

6 years ago

2.0.99

6 years ago

2.0.98

6 years ago

2.0.97

6 years ago

2.0.96

6 years ago

2.0.95

6 years ago

2.0.94

6 years ago

2.0.93

6 years ago

2.0.92

6 years ago

2.0.91

6 years ago

2.0.90

6 years ago

2.0.89

6 years ago

2.0.88

6 years ago

2.0.87

6 years ago

2.0.86

6 years ago

2.0.85

6 years ago

2.0.84

6 years ago

2.0.83

6 years ago

2.0.82

6 years ago

2.0.81

6 years ago

2.0.80

6 years ago

2.0.79

6 years ago

2.0.78

6 years ago

2.0.77

6 years ago

2.0.76

6 years ago

2.0.75

6 years ago

2.0.74

6 years ago

2.0.73

6 years ago

2.0.72

6 years ago

2.0.71

6 years ago

2.0.70

6 years ago

2.0.69

6 years ago

2.0.68

6 years ago

2.0.67

6 years ago

2.0.66

6 years ago

2.0.65

6 years ago

2.0.64

6 years ago

2.0.63

6 years ago

2.0.62

6 years ago

2.0.61

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago