GET
/
v1
/
hook
/
{orgId}
/
{envKey}
/
{connectorId}
/
{webhookType}
/
{webhookTokenOrGlobalRoute}
const options = {
  method: 'GET',
  headers: {
    'x-api-key': '<api-key>',
    'x-api-secret': '<api-key>',
    'Content-Type': 'application/json'
  },
  body: '"<any>"'
};

fetch('https://api.runmorph.dev/v1/hook/{orgId}/{envKey}/{connectorId}/{webhookType}/{webhookTokenOrGlobalRoute}', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
"<any>"

Authorizations

x-api-key
string
header
required
x-api-secret
string
header
required

Headers

headers
any | null

Path Parameters

orgId
string
required
envKey
string
required
connectorId
enum<string>
required
Available options:
hubspot,
pipedrive,
salesforce,
aircall,
gong,
attio,
dialpad,
calendly
webhookType
enum<string>
required
Available options:
global,
subscription
webhookTokenOrGlobalRoute
string
required

Query Parameters

query
any | null

Body

The body is of type any.

Response

200
application/json

OK

The response is of type any.