admin_checkout_id_gw_override_swish_put
curl --request PUT \
--url https://checkout.dintero.com/v1/admin/gateways/swish/override \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"store_id": "<string>"
}
'import requests
url = "https://checkout.dintero.com/v1/admin/gateways/swish/override"
payload = { "store_id": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({store_id: '<string>'})
};
fetch('https://checkout.dintero.com/v1/admin/gateways/swish/override', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/admin/gateways/swish/override"
payload := strings.NewReader("{\n \"store_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://checkout.dintero.com/v1/admin/gateways/swish/override")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"store_id\": \"<string>\"\n}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}swish-gateway
Update store override for Swish gateway
scopes:
- admin:dintero
PUT
https://checkout.dintero.com/v1
/
admin
/
gateways
/
swish
/
override
admin_checkout_id_gw_override_swish_put
curl --request PUT \
--url https://checkout.dintero.com/v1/admin/gateways/swish/override \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"store_id": "<string>"
}
'import requests
url = "https://checkout.dintero.com/v1/admin/gateways/swish/override"
payload = { "store_id": "<string>" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({store_id: '<string>'})
};
fetch('https://checkout.dintero.com/v1/admin/gateways/swish/override', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://checkout.dintero.com/v1/admin/gateways/swish/override"
payload := strings.NewReader("{\n \"store_id\": \"<string>\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://checkout.dintero.com/v1/admin/gateways/swish/override")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"store_id\": \"<string>\"\n}")
.asString();{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}Authorizations
adminKeyJWT
X-API-Key authentication for accessing admin endpoints. Use Create api-key to create a key.
The content of the header should look like the following:
x-api-key: {api_key}
Body
application/json
Response
Gateway updated
Last modified on July 14, 2026
⌘I