Hi! I have a problem with VOIP push notifications. They don't come to the device. I'm executing a conferenceCallout command with the username in the destination: $this->httpClient
->requestAsync('POST', 'https://calling.api.sinch.com/calling/v1/callouts', [
RequestOptions::HEADERS => [
'x-timestamp' => $now,
'Authorization' => "application {$appId}:{$authorizationSignature}",
],
RequestOptions::JSON => [
'method' => 'conferenceCallout',
'conferenceCallout' => [
'destination' => [
'type' => 'username',
'endpoint' => 'user-698-staging',
],
'conferenceId' => 'InAppToPSTN',
'cli' => '+E.164',
'maxDuration' => 3600,
],
])
->then(function(ResponseInterface $response): ?array {
if ($response->getStatusCode() === 204) {
return null;
}
return json_decode($response->getBody()->getContents(), true);
}); From the Voice logs in your dashboard I see that the connectMxp command is called and immediately the call ends with Failed status and Congestion reason. Call id - 1a194bf5-f909-4d5f-b867-fa2b852e0689
... View more