Giter Site home page Giter Site logo

Comments (3)

AndyHaas avatar AndyHaas commented on May 25, 2024

@GraniteStateCollege I can give you some tips even though I don't display the data I do store it in my database. Once I make the GET call to get all voicemails /restapi/v1.0/account/~/call-log?type=Voice&view=Detailed&withRecording=false. I then go through the model and parse out the data and then push it into a data table.

What issue are you currently having or what are you trying to achieve?

from ringcentral-csharp-client.

GraniteStateCollege avatar GraniteStateCollege commented on May 25, 2024

Thanks for responding. All I really want to do is retrieve the call log and put it in a database table. The issue I am having is that I can't seem to get this to work at all. I have the code below that uses the client api but doesn't seem to get authorized as I can't get a response after calling rc..Authorize():

using RingCentral;
namespace ringCentralLogs
{
    class Program
    {
	static void Main(string[] args)
        {
            Conn();
        }

        static async void Conn()
        {
            RestClient rc = new RestClient("clientId", "ClientSecret");

            await rc.Authorize("username", "", "password");
            var extension = rc.Restapi().Account().Extension();
            var callLogs = extension.CallLog().List(new { direction = "Outbound" });
            Console.WriteLine(callLogs.Id);

            await rc.Revoke();
            return;
        }
    }
}

from ringcentral-csharp-client.

AndyHaas avatar AndyHaas commented on May 25, 2024

@GraniteStateCollege did you get this resolved?

I don't use the fancy model so I would have to try to recreate using the fancy model and see what happens.

from ringcentral-csharp-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.