We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Sip endpoints for listing work but the creation ones throw an error
To Reproduce Attempt to create a sip trunk or dispatch rule
{"code":"bad_route","msg":"no handler for path "/twirp/livekit.Egress/CreateSIPInboundTrunk"","meta":{"twirp_invalid_route":"POST /twirp/livekit.Egress/CreateSIPInboundTrunk"}}
Expected behavior Creation of tunk or dispatch rule or validation error
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
` LivekitSip.SIPInboundTrunkInfo trunk = null;
Response<SIPInboundTrunkInfo> tinfo = client.createSipInboundTrunk("testing", Arrays.asList("XXXXXXX"), opts).execute(); if (tinfo.isSuccessful()) { System.out.println("GOOD??"); } else { System.out.println(tinfo.isSuccessful()); System.out.println(tinfo.errorBody().string()); } `
Sorry, something went wrong.
Fixed by #83
No branches or pull requests
Describe the bug
Sip endpoints for listing work but the creation ones throw an error
To Reproduce
Attempt to create a sip trunk or dispatch rule
{"code":"bad_route","msg":"no handler for path "/twirp/livekit.Egress/CreateSIPInboundTrunk"","meta":{"twirp_invalid_route":"POST /twirp/livekit.Egress/CreateSIPInboundTrunk"}}
Expected behavior
Creation of tunk or dispatch rule or validation error
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: