Retrieve a gateway

GET/sales/gateways/{gateway_id}

Retrieves a payment gateway from the catalog. Gateway IDs use the gtw_ prefix followed by the gateway key, for example gtw_<alias>; the key without the prefix is not accepted.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

gateway_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/sales/gateways/string"
{  "data": {    "capabilities": {      "beta": true,      "requires_secret": true,      "subscriptions": true,      "subscriptions_only": true    },    "featured": true,    "help_url": "string",    "icon_url": "string",    "id": "string",    "labels": {      "external_id": "string",      "secret": "string"    },    "name": "string",    "object": "gateway"  }}