Generic
- Contact
- Company
- User
- Workspace
Crm
- Opportunity
- Pipeline
- Stage
- Engagement
Scheduling
- Event Type
- Slot
- Event
Telephony
Widget
- Card View
Custom
- Fields
Call Transcript
List Call Transcript
GET
/
v1
/
resources
/
telephonyCallTranscript
const options = {
method: 'GET',
headers: {
'x-api-key': '<api-key>',
'x-api-secret': '<api-key>',
'x-connector-id': '<api-key>',
'x-owner-id': '<api-key>',
'x-session-token': '<api-key>'
}
};
fetch('https://api.runmorph.dev/v1/resources/telephonyCallTranscript', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "list",
"data": [
{
"object": "resource",
"model": "<string>",
"id": "<string>",
"fields": {
"call": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"duration": 1,
"segments": [
{
"start": 1,
"end": 1,
"text": "<string>",
"speakerId": "<string>"
}
],
"speakers": [
{
"id": "<string>",
"origin": "internal",
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"user": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"contact": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
]
},
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"rawResource": "<any>",
"warnings": [
{
"code": "<string>",
"message": "<string>"
}
]
}
],
"next": "<string>"
}
Authorizations
Query Parameters
Query parameter that accepts a raw query string and auto-detects and parses emails, phone numbers (E.164), URLs, domains, and ISO dates
Response
200
application/json
OK
The response is of type object
.
const options = {
method: 'GET',
headers: {
'x-api-key': '<api-key>',
'x-api-secret': '<api-key>',
'x-connector-id': '<api-key>',
'x-owner-id': '<api-key>',
'x-session-token': '<api-key>'
}
};
fetch('https://api.runmorph.dev/v1/resources/telephonyCallTranscript', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
{
"object": "list",
"data": [
{
"object": "resource",
"model": "<string>",
"id": "<string>",
"fields": {
"call": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"duration": 1,
"segments": [
{
"start": 1,
"end": 1,
"text": "<string>",
"speakerId": "<string>"
}
],
"speakers": [
{
"id": "<string>",
"origin": "internal",
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"user": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"contact": {
"id": "<string>",
"object": "resourceRef",
"model": "<string>",
"fields": "<any>",
"rawResource": "<any>",
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
]
},
"remote": {
"id": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"rawResource": "<any>",
"warnings": [
{
"code": "<string>",
"message": "<string>"
}
]
}
],
"next": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.