Better intelligence for better experiences. The industry leader in AI-powered conversation intelligence to supercharge your contact center and improve customer experience (CX).
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
callminer: {
type: "app",
app: "callminer",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.callminer.$auth.ingestion_api_url}/api/info/callmetadataconfig`,
headers: {
Authorization: `Bearer ${this.callminer.$auth.oauth_access_token}`,
},
})
},
})
CallMiner uses OAuth authentication. When you connect your CallMiner account, Pipedream will open a popup window where you can sign into CallMiner and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any CallMiner API.
Pipedream requests the following authorization scopes when you connect your account:
https://callminer.net/auth/platform-ingestion
POST
{{custom_fields.identity_provider_service_url}}/connect/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=client_credentials
&
code={{oauth.code}}
POST
{{custom_fields.identity_provider_service_url}}/connect/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=client_credentials
&
refresh_token={{oauth.refresh_token}}