Stored Procedures
Stored procedures are available to complement the data available from the Data Model. It may be necessary to update data available from a view using a stored procedure because the data does not provide for direct, table-like, two-way updates. In these situations, the retrieval of the data is done using the appropriate view or table, while the update is done by calling a stored procedure. Stored procedures take a list of parameters and return back a dataset that contains the collection of tuples that constitute the response.
HubSpot Adapter Stored Procedures
| Name | Description |
| CreateCustomObject | Create a Custom Object in HubSpot. May not work for the OAuth Authentication scheme due to insufficient OAuth Apps scopes, use the API Key authentication instead. |
| CreateCustomProperty | Create a Custom Property for a HubSpot Object. |
| CreateSchema | Creates a schema file for the specified table or view. |
| DeleteCustomObject | Delete an existing Custom Object in HubSpot. May not work for the OAuth Authentication scheme due to insufficient OAuth Apps scopes, use the API Key authentication instead. |
| DeleteCustomProperty | Delete an existing Custom Property for a HubSpot Object. |
| DeleteFile | Permanently delete a file and all related data and thumbnails from file manager. |
| GetOAuthAccessToken | Gets the OAuth access token from HubSpot. |
| GetOAuthAuthorizationURL | Gets the HubSpot authorization URL. Access the URL returned in the output in an Internet browser. This requests the access token that can be used as part of the connection string to HubSpot. |
| GetTotalCountForQuery | Usage information for the operation GetTotalCountForQuery.rsb. |
| RefreshOAuthAccessToken | Refreshes the OAuth access token used for authentication with various HubSpot services. |
| UpdateCustomObject | Update an existing Custom Object in HubSpot. May not work for the OAuth Authentication scheme due to insufficient OAuth Apps scopes, use the API Key authentication instead. |
| UpdateCustomProperty | Update an existing Custom Property for a HubSpot Object. |
| UploadFile | Upload a new file to the file manager. |