Documentation
LogIn- Getting started
-
CRM API
- Adding/Updating Contacts
- List Filter/Search Contacts
- Contact Timeline Actions
- Contact Info
- Contact Actions
- Adding/Updating Company
- List Filter/Search Companies
- Company Timeline Actions
- Company Info
- Update Company Info
- Add Company Timeline Action
- Adding/Updating Deals
- List Filter/Search Deals
- List Filter/Search Deals Board View
- Drag/Drop Deals between Stages
- Deal WIN/LOSS Reasons
- Owners
- Countries
- Stages
- Funnels
- Lead Scores
- Deal Timeline Actions
- Deal Info
- Update Deal Info
- Add Deal Timeline Action
- List Filter/Search Activities/Tasks
- Add/Update Activity/Tasks
- Contact Messages
- List User Messages
- Delete Actions
-
Phone API
- Send SMS
- Search Phone Numbers
- Order Phone Number
- List Active Phone Numbers
- Disconnect Phone Number
- List Available Audio Files
- Block Phone Number
- Unblock Phone Number
- Check Number Block Status
- List Phone Sub Accounts
- Add/Edit Sub Account
- Attach Phone Number to Sub Account
- List Phone Numbers Per Sub Account
- System API
- Service/Tickets API
- API - Premium Edition
- Callbacks
- Resellers API
- Enabler API
- SMS Error Codes
This API is used to get currency rate but getting the rates .
by default the rate is relevant to USD so if someone wants to convert from 2 other currencies,
need to send currency2 parameter
Method: Get
Base URL : https://hubbucs.com/site/api/currency_rate
by default the rate is relevant to USD so if someone wants to convert from 2 other currencies,
need to send currency2 parameter
Method: Get
Base URL : https://hubbucs.com/site/api/currency_rate
Mandatory Parameters | Sample | Description |
---|---|---|
key | 374593457034859 | The company account API key, you can get from company settings > API settings |
currency1 | String | Iso Code For first Currency example: USD, EUR, CAD, etc.. |
Optional Parameters | Sample | Description |
---|---|---|
currency2 | String | Iso Code For second Currency if needed example: USD, EUR, CAD, etc.. |
amount | number | amount to calculate, if not provided a default value of 1 is used |
Example:
Example :
https://hubbucs.com/site/api/get_currencies_rate.php?currency1=EUR
Response :
- {
- "currency_pair":"EUR/USD",
- "amount":"1",
- "value":"1.1562230816814",
- "details":"1 EUR = 1.1562230816814 USD",
- }
- ------OR------
- {
- "status":false
- "message":Iso Code For Currency is not defined
- }
- ------OR------
- {
- "status":false
- "message":Iso Code For Currency is Required
- }