Payment settings for Sequence account
curl --request GET \
--url https://eu.sequencehq.com/api/payments/settingsimport requests
url = "https://eu.sequencehq.com/api/payments/settings"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://eu.sequencehq.com/api/payments/settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://eu.sequencehq.com/api/payments/settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://eu.sequencehq.com/api/payments/settings"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://eu.sequencehq.com/api/payments/settings")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu.sequencehq.com/api/payments/settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "e095e00f-36af-44c9-8c53-3e25677ce8ce",
"failureNotifications": {
"merchantNotifications": "SEND_NOTIFICATIONS",
"customerNotifications": "SEND_NOTIFICATIONS"
}
}This response has no body data.This response has no body data.This response has no body data.Account Settings
Payment settings for Sequence account
Retrieves payment settings for the current Sequence accounts. If no settings exist, default settings will be returned.
GET
/
payments
/
settings
Payment settings for Sequence account
curl --request GET \
--url https://eu.sequencehq.com/api/payments/settingsimport requests
url = "https://eu.sequencehq.com/api/payments/settings"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://eu.sequencehq.com/api/payments/settings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://eu.sequencehq.com/api/payments/settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://eu.sequencehq.com/api/payments/settings"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://eu.sequencehq.com/api/payments/settings")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu.sequencehq.com/api/payments/settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "e095e00f-36af-44c9-8c53-3e25677ce8ce",
"failureNotifications": {
"merchantNotifications": "SEND_NOTIFICATIONS",
"customerNotifications": "SEND_NOTIFICATIONS"
}
}This response has no body data.This response has no body data.This response has no body data.Headers
Use this header to select an API version
Available options:
2024-07-30 Response
OK
The ID of the account's payment settings
Example:
"e095e00f-36af-44c9-8c53-3e25677ce8ce"
The failure notification settings for the account
Show child attributes
Show child attributes
Example:
{ "merchantNotifications": "SEND_NOTIFICATIONS", "customerNotifications": "SEND_NOTIFICATIONS" }
⌘I