Get a Gateway
GEThttps://useast.api.elasticpath.com/v2/gateways/:gatewaySlug
Retrieves the specified gateway.
Request
Path Parameters
gatewaySlug stringrequired
Possible values: [manual
, braintree
, stripe
, stripe_payment_intents
, stripe_connect
, elastic_path_payments_stripe
, paypal_express_checkout
, adyen
, authorize_net
, card_connect
, cyber_source
]
The slug of the gateway.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
{
"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"
}
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://useast.api.elasticpath.com/v2/gateways/:gatewaySlug' \
-H 'Accept: application/json'
ResponseClear