Update Stripe Connect Gateway
PUThttps://useast.api.elasticpath.com/v2/gateways/stripe_connect
Use this endpoint to configure Stripe Connect in Commerce.
note
You can contact Elastic Path sales or customer success team to get more information about Stripe Connect and to check whether it will work for you.
Request
- application/json
Body
data object
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
{
"data": {
"enabled": true,
"stripe_account": "{{stripeConnectAccountId}}",
"name": "Stripe Connect",
"test": true,
"slug": "stripe_connect",
"type": "gateway"
}
}
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 PUT 'https://useast.api.elasticpath.com/v2/gateways/stripe_connect' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"data": {
"enabled": true,
"stripe_account": "string",
"test": true
}
}'
ResponseClear