Hello GoTo Community,
I'm trying to create a PSTN call via the GoToConnect API but keep getting a 404 error.
Details:
- Endpoint: POST https://api.getgo.com/v1/accounts/me/calls
- Authorization: Bearer token (OAuth2 Authorization Code Grant)
- Body:
{
"to": "+5511981405xxx",
"from": "+55114210xxx",
"callType": "PSTN"
}
Error:
{
"errorCode": "NOT_FOUND",
"message": "The requested resource was not found"
}
The access token works for other endpoints like GET /users/v1/me.
Is `/v1/accounts/me/calls` still valid, or am I missing something in my request?
Thanks for your help!