Generic
- Contact
- Company
- User
- Workspace
Crm
- Opportunity
- Pipeline
- Stage
- Engagement
Scheduling
- Event Type
- Slot
- Event
Telephony
- Call
- Call Transcript
Widget
- Card View
Custom
- Fields
Retrieve a connector (sessionToken)
GET
/
v1
/
s
/
connector
const options = {
method: 'GET',
headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};
fetch('https://api.runmorph.dev/v1/s/connector', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "connector",
"id": "<string>",
"name": "<string>",
"operations": [
"<string>"
],
"settings": [
{
"key": "<string>",
"type": "text",
"name": "<string>",
"required": true,
"description": "<string>",
"default": "<string>"
}
],
"cloud": {
"hasCustomCredential": true
}
}
const options = {
method: 'GET',
headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};
fetch('https://api.runmorph.dev/v1/s/connector', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "connector",
"id": "<string>",
"name": "<string>",
"operations": [
"<string>"
],
"settings": [
{
"key": "<string>",
"type": "text",
"name": "<string>",
"required": true,
"description": "<string>",
"default": "<string>"
}
],
"cloud": {
"hasCustomCredential": true
}
}
Assistant
Responses are generated using AI and may contain mistakes.