Configure Stripe

You can configure Stripe programatically using the /gateways/stripe endpoint.

The Stripe gateway object

Attribute

Type

Description

login

string

Your live or test Stripe secret key

type

string

This will always be gateway

name

string

The display name of the gateway

slug

string

A unique slug for this gateway

enabled

boolean

true or false that will enable the gateway

Update Stripe settings

PUT https://api.moltin.com/v2/gateways/stripe

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API

Request Body

NameTypeDescription

login

string

Stripe test or live secret key

enabled

boolean

true, false

{
  "data": {
    "enabled": true,
    "login": "xxx",
    "name": "Stripe",
    "slug": "stripe",
    "type": "gateway"
  }
}
curl -X PUT https://api.moltin.com/v2/gateways/stripe \
     -H "Authorization: Bearer XXX" \
     -H "Content-Type: application/json" \
     -d $'{
       "data": {
         "enabled": true,
         "login": "xxx"
       }
     }'

Last updated