LogoLogo
GoodAccess WebsiteRequest Free TrialDownload App
  • Getting Started
    • 1. What is GoodAccess?
    • 2. Architecture Overview
    • 3. Sign up for Free Trial
    • 4. Download App & Connect
  • 🖥️Configuration guides
    • Features
      • Zero Trust Access Control
        • Access Cards
        • Device Posture Check
        • Device Approval
        • Geo Restrictions
      • API Integration
        • API Reference
          • Members
          • Groups
          • Systems
          • Access Cards
          • Relations
          • Gateways
          • Logs
        • Acronis Integration
      • SIEM Integration
      • SSO/SCIM
        • Auth0
        • Cisco Duo
        • Google Workspace
        • JumpCloud
        • Microsoft Entra ID
        • Okta
        • OneLogin
        • Ping Identity
        • Universal (SAML)
      • MFA
      • Passkeys
      • MSI deployment
      • Threat Blocker
      • Custom Domain Blocking
      • DNS Management
      • Split Tunneling
      • Port Forwarding
    • Branch Connector
      • Cisco
      • Cisco Meraki
      • FortiGate
      • MikroTik
      • SonicWall
      • UniFi USG
      • Zyxel Nebula Control Center
      • Other supported routers and firewalls
    • Cloud Connector
      • AWS
      • Google Cloud
      • Microsoft Azure
      • Other Public Cloud providers
    • IP whitelisting
      • APACHE Web Server
      • AWS VPC
      • Azure (Office 365)
      • Google Cloud
      • Google Workspace
      • Magento
      • Microsoft IIS
      • NGINX
        • Domain
        • Subdomain
        • URL
      • OpenCart
      • PHP
      • PHPMyAdmin
      • Pipedrive
      • SalesForce
      • SSH server
      • WordPress
      • Zoho CRM
    • Linux
      • DEB repository
      • RPM repository
      • Manual installation
      • Linux Troubleshooting
  • 🆘FAQ & Troubleshooting
    • FAQ
      • Business
      • Technical
    • Troubleshooting
  • 📓Product Changelog
    • Windows
    • macOS
Powered by GitBook
On this page

Was this helpful?

  1. Configuration guides
  2. Features
  3. API Integration
  4. API Reference

Gateways

This endpoint allows you to fetch data about the Gateways of your Team.

PreviousRelationsNextLogs

Last updated 4 months ago

Was this helpful?

🖥️

Fetch All Gateways

get
Authorizations
Responses
200
OK
application/json
Responseobject
get
GET /api/v1/gateways HTTP/1.1
Host: integration.goodaccess.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

[
  {
    "id": "99db5a81-d652-4c19-a61a-54df989678f6",
    "created_at": "2024-05-02 13:31:37",
    "name": "US Gateway #1",
    "hostname": "75-us-190-d866o.accessgate.cloud",
    "location": "San Francisco, United States",
    "ip": "120.10.10.13",
    "status": "up"
  }
]

Fetch Gateway by its ID

get
Authorizations
Path parameters
gatewayIdstringRequired

ID of gateway

Responses
200
OK
application/json
Responseobject
404
Not Found
application/json
get
GET /api/v1/gateway/{gatewayId} HTTP/1.1
Host: integration.goodaccess.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "99db5a81-d652-4c19-a61a-54df989678f6",
  "created_at": "2024-05-02 13:31:37",
  "name": "US Gateway #1",
  "hostname": "75-us-190-d866o.accessgate.cloud",
  "location": "San Francisco, United States",
  "ip": "120.10.10.13",
  "status": "up"
}
  • GETFetch All Gateways
  • GETFetch Gateway by its ID