Skip to main content
Question

Getting "Permission Denied" in response while trying to fetch group_relationships

  • December 9, 2025
  • 1 reply
  • 83 views

Hi! I was trying to fetch group_relationships with owner parameter →
https://api.calendly.com/group_relationships?owner=https://api.calendly.com/organization_memberships/ef4f9092-0e84-43cc-960c-b82804f7f9fd

I am getting following 403 error →
{
    "title": "Permission Denied",
    "message": "You do not have permission to access this resource."
}


I’m using PAT token to make API call, and the PAT is generated from an Owner account still getting same issue. I’ve tried with OAuth2 as well but facing same issue

1 reply

Cameron
Employee
  • Employee
  • May 28, 2026

Hi ​@Prathamesh75047  - Thanks for reaching out!

In this case, our /group_relationships endpoint (documentation here) requires the groups:read scope. If the token you’re using already has that scope, a 403 on this request usually points to an access issue rather than a problem with the endpoint itself.

I’d double check these three things:

  • the request is being made against the v2 endpoint
  • the owner value is a valid organization membership URI
  • the token was issued to a user who belongs to that specific Calendly organization, and that organization has Groups enabled. (All paid plans have Groups enabled)

For example:

GET https://api.calendly.com/api/v2/group_relationships?owner=https://api.calendly.com/api/v2/organization_memberships/{membership_uuid}
Authorization: Bearer YOUR_TOKEN

If all three are correct and you’re still getting a 403, please share the exact request URL format you’re using (with the token redacted) and the OAuth scopes on the token so this can be narrowed down further.

Thanks!