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 connection (sessionToken)
GET
/
v1
/
s
/
connection
const options = {
method: 'GET',
headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};
fetch('https://api.runmorph.dev/v1/s/connection', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "connection",
"connectorId": "<string>",
"ownerId": "<string>",
"operations": [
"<string>"
],
"status": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
const options = {
method: 'GET',
headers: {'x-api-key': '<api-key>', 'x-api-secret': '<api-key>'}
};
fetch('https://api.runmorph.dev/v1/s/connection', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "connection",
"connectorId": "<string>",
"ownerId": "<string>",
"operations": [
"<string>"
],
"status": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.