Get all Gateways
GET/v2/gateways
Retrieves all gateways.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
enabled boolean
Specifies whether the gateway is enabled or disabled. Set true
to enable the gateway and false
to disable the gateway. Default is false
.
login string
Represents your login ID.
name string
Represents the name of the gateway.
type string
Specifies the type of object being returned.
password string
Specifies your password.
signature string
slug string
Specifies the slug of the gateway.
test boolean
Specifies whether the test mode is enabled. Set true
to enable test mode and false
to disable the test mode. Default is false
.
{
"data": [
{
"enabled": true,
"login": "string",
"name": "{gatewayName}",
"type": "gateway",
"password": "string",
"signature": "string",
"slug": "{gatewaySlug}",
"test": false
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
detail string
status string
title string
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Loading...