For the complete documentation index, see llms.txt. This page is also available as Markdown.

Gateways

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

Fetch All Gateways

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

OK

application/json
Responseobject
get/api/v1/gateways
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
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
gatewayIdstringRequired

ID of gateway

Responses
200

OK

application/json
Responseobject
get/api/v1/gateway/{gatewayId}
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"
}

Last updated

Was this helpful?