News & Announcements User Community Developer Community

Welcome to the RingCentral Community

Please note the community is currently under maintenance and is read-only.

Search
Make sure to review our Terms of Use and Community Guidelines.
  Please note the community is currently under maintenance and is read-only.
Home » Developers
Why is the voicemail webhook not sent when receiving a voicemail?
Tags: voicemail, webhooks
Jun 3, 2021 at 5:08pm   •   5 replies  •  0 likes
Heng Ong

Hi there,

We are encountering an issue with a mutual customer where the voicemail webhook is only being sent when the voicemail is read by the user, but not when the voicemail was received.

Any ideas?


We've also submitted a help support ticket but the turnaround time is extremely slow. We have mutual customers that are unhappy.



on Oct 13, 2021 at 2:20pm   •  0 likes

Hi Phong - has this been resolved?

on Mar 21, 2022 at 6:43am   •  0 likes

@Heng Ong

Did you find any solution? i have similar issue.

on Jun 3, 2021 at 5:09pm   •  0 likes

We are still seeing some issues with voicemails noted in the call logs that are 404s

For example, take a look at this call log entry - https://platform.ringcentral.com/restapi/v1.0/account/59721889/call-log/O5AL2qaQTawozUA?view=Detailed

This is the voicemail URL in one of the legs, and it does not exist - https://platform.ringcentral.com/restapi/v1.0/account/59721889/extension/59855527/message-store/1550344499004 . We get a " HTTP 404: CMN-102 - Resource for parameter [messageId] is not found" error.

The voicemail is in fact in a different extension - https://api.ringcentral.com/restapi/v1.0/account/59721889/extension/59721889/message-store/1550344499004

Can we get this escalated please so we can find a resolution?

3 Answers
answered on Mar 21, 2022 at 7:46am  

It is working as normal as I just run my test. Can you clear all active subscription (if any) and subscribe a new one, print out the re request id (from the headers) and the subscription id. I will ask the engineer to have a look at your subscription.


 0
answered on Jun 4, 2021 at 1:24am  

Here is the event we are subscribing to:

/restapi/v1.0/account/59721889/extension/59721889/voicemail


We notice that the voicemails webhook only get sent out to us after the user reads the voicemail (which is a few hours after the voicemail was recorded)


We have a backfill script that polls the call logs for missed calls, and in addition to that if there are calls that results in voicemails, we want to pull them into our system to log them.


Here is a sample call log:

{
  "uri": "https://platform.ringcentral.com/restapi/v1.0/account/377098040/call-log/B5TOIqqWARrHzUA?view=Detailed",
  "id": "B5TOIqqWARrHzUA",
  "sessionId": "91651935040",
  "startTime": "2021-04-02T16:22:36.750Z",
  "duration": 88,
  "type": "Voice",
  "direction": "Inbound",
  "action": "Phone Call",
  "result": "Voicemail",
  "to": {
    "phoneNumber": "+1888..."
  },
  "from": {
    "name": "L...",
    "phoneNumber": "+1618...",
  },
  "telephonySessionId": "s-ec6115b764294caf80078e7ecf4c1934",
  "transport": "PSTN",
  "lastModifiedTime": "2021-04-02T16:24:14.111Z",
  "billing": {
    "costIncluded": 0.059,
    "costPurchased": 0
  },
  "legs": [
    {
      "startTime": "2021-04-02T16:22:36.750Z",
      "duration": 88,
      "type": "Voice",
      "direction": "Inbound",
      "action": "Phone Call",
      "result": "Voicemail",
      "to": {
        "phoneNumber": "+1888..."
      },
      "from": {
        "name": "L...",
        "phoneNumber": "+1618..."
      },
      "telephonySessionId": "s-ec6115b764294caf80078e7ecf4c1934",
      "transport": "PSTN",
      "billing": {
        "costIncluded": 0.059,
        "costPurchased": 0
      },
      "legType": "Accept",
      "master": true
    },
    {
      "startTime": "2021-04-02T16:22:36.766Z",
      "duration": 27,
      "type": "Voice",
      "direction": "Inbound",
      "action": "Phone Call",
      "result": "Accepted",
      "to": {
        "name": "IVR Menu 1001",
        "phoneNumber": "+1888",
        "extensionId": "386022040"
      },
      "from": {
        "name": "L...",
        "phoneNumber": "+1618...",
      },
      "extension": {
        "uri": "https://platform.ringcentral.com/restapi/v1.0/account/377098040/extension/386022040",
        "id": 386022040
      },
      "reason": "Accepted",
      "reasonDescription": "The call connected to and was accepted by this number.",
      "telephonySessionId": "s-ec6115b764294caf80078e7ecf4c1934",
      "transport": "PSTN",
      "legType": "Accept"
    },
    {
      "startTime": "2021-04-02T16:23:04.119Z",
      "duration": 61,
      "type": "Voice",
      "direction": "Inbound",
      "action": "Phone Call",
      "result": "Voicemail",
      "to": {
        "name": "Returns",
        "phoneNumber": "+1888...",
        "extensionId": "386009040"
      },
      "from": {
        "name": "L...",
        "phoneNumber": "+1618...",
      },
      "message": {
        "uri": "https://platform.ringcentral.com/restapi/v1.0/account/377098040/extension/386009040/message-store/1401140377040",
        "id": "1401140377040",
        "type": "VoiceMail"
      },
      "extension": {
        "uri": "https://platform.ringcentral.com/restapi/v1.0/account/377098040/extension/386009040",
        "id": 386009040
      },
      "telephonySessionId": "s-ec6115b764294caf80078e7ecf4c1934",
      "transport": "PSTN",
      "legType": "Accept"
    }
  ]
}



When I fetch the voicemail message, which is

https://platform.ringcentral.com/restapi/v1.0/account/377098040/extension/386009040/message-store/1401140377040

it gives me a 404

This is because for some reason, the voicemail is actually in a different extension:

https://platform.ringcentral.com/restapi/v1.0/account/377098040/extension/377100040/message-store/1401140377040



So couple issues:

1. Why does the call log say the voicemail message is in one extension, but is actually in another?

2. Why does the voicemail webhook only get sent out after it was read even though it was received a few hours prior?


 0
on Jun 4, 2021 at 8:28am   •  1 likes

Hang on there. I just test /voicemail notification on Webhooks and observe the same issue as you reported. I will let the engineering team know to fix this asap.

answered on Jun 3, 2021 at 9:10pm  

Show me some code how you subscribe for voicemail notification.

BTW, you should read voicemail from the message-store, not from the call log.

var endpoint = '/restapi/v1.0/account/~/extension/~/message-store'
var params = {
      messageType: 'VoiceMail'
}

If you want to read voicemail using the call-log endpoint, you have to make a GET call to the message.uri to get the message metadata then parse the response to get the uri of the binary attachment.

https://platform.ringcentral.com/restapi/v1.0/account/xxxxxx/extension/yyyyyy/message-store/9152177004
{
  uri: 'https://platform.ringcentral.com/restapi/v1.0/account/xxxxxx/extension/yyyyyy/message-store/9152177004',
  id: 9152177004,
  to: [
    {
      phoneNumber: '+1312982xxxx',
      extensionNumber: '101',
      name: 'Gerard'
    }
  ],
  from: {
    phoneNumber: '+1650513xxxx',
    name: 'Francisco',
    location: 'San Mateo, CA'
  },
  type: 'VoiceMail',
  creationTime: '2021-03-05T20:10:35.000Z',
  readStatus: 'Unread',
  priority: 'Normal',
  attachments: [
    {
      id: 9152177004,
      uri: 'https://media.devtest.ringcentral.com/restapi/v1.0/account/xxxxxx/extension/yyyyyy/message-store/9152177004/content/9152177004',
      type: 'AudioRecording',
      contentType: 'audio/mpeg',
      vmDuration: 1
    }
  ],
  direction: 'Inbound',
  availability: 'Alive',
  messageStatus: 'Received',
  lastModifiedTime: '2021-03-05T20:10:35.594Z',
  vmTranscriptionStatus: 'NotAvailable'
}



 0



A new Community is coming to RingCentral!

Posts are currently read-only as we transition into our new platform.

We thank you for your patience
during this downtime.

Try Workflow Builder

Did you know you can easily automate tasks like responding to SMS, team messages, and more? Plus it's included with RingCentral Video and RingEX plans!

Try RingCentral Workflow Builder

PRODUCTS
RingEX
Message
Video
Phone
OPEN ECOSYSTEM
Developer Platform
APIs
Integrated Apps
App Gallery
Developer support
Games and rewards

RESOURCES
Resource center
Blog
Product Releases
Accessibility
QUICK LINKS
App Download
RingCentral App login
Admin Portal Login
Contact Sales
© 1999-2024 RingCentral, Inc. All rights reserved. Legal Privacy Notice Site Map Contact Us